Skip to content

Commit

Permalink
Merge pull request #625 from vonovak/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
rotemmiz authored Mar 15, 2018
2 parents 8ac1fd9 + e56a6d5 commit 9a7636b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion detox/local-cli/detox-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const _ = require('lodash');
const program = require('commander');
const path = require('path');
const cp = require('child_process');
program.description(`[convince method] run the command defined in 'configuration.build'`)
program.description(`[convenience method] run the command defined in 'configuration.build'`)
.option('-c, --configuration [device configuration]', 'Select a device configuration from your defined configurations,'
+ 'if not supplied, and there\'s only one configuration, detox will default to it')
.parse(process.argv);
Expand Down
2 changes: 1 addition & 1 deletion detox/local-cli/detox.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const program = require('commander');
program
.arguments('<process>')
.command('test', 'Initiating your test suite')
.command('build', `[convince method] Run the command defined in 'configuration.build'`)
.command('build', `[convenience method] Run the command defined in 'configuration.build'`)
.command('run-server', 'Starts a standalone detox server')
.command('init', 'Create initial e2e tests folder')
.command('clean-framework-cache', `Delete all compiled framework binaries from ~/Library/Detox, they will be rebuilt on 'npm install' or when running 'build-framework-cache'`)
Expand Down

0 comments on commit 9a7636b

Please sign in to comment.