add runGrep as alias

This commit is contained in:
Johannes Rieken
2017-05-22 13:53:14 +02:00
parent 9e80eade9c
commit cbb27e8c6a

View File

@@ -13,7 +13,7 @@ const events = require('events');
const optimist = require('optimist')
.describe('grep', 'only run tests matching <pattern>').alias('grep', 'g').alias('grep', 'f').string('grep')
.describe('run', 'only run tests from <file>').string('run')
.describe('runGlob', 'only run tests matching <file_pattern>').boolean('runGlob')
.describe('runGlob', 'only run tests matching <file_pattern>').boolean('runGlob').alias('runGrep')
.describe('build', 'run with build output (out-build)').boolean('build')
.describe('coverage', 'generate coverage report').boolean('coverage')
.describe('debug', 'open dev tools, keep window open, reuse app data').string('debug')