From fc9bb2ca3a97dc5d52173ad35c64149e606762d8 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Wed, 14 Mar 2018 17:08:32 +0100 Subject: [PATCH 1/2] Update detox-build.js --- detox/local-cli/detox-build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detox/local-cli/detox-build.js b/detox/local-cli/detox-build.js index 676111c5c9..d07edf940b 100644 --- a/detox/local-cli/detox-build.js +++ b/detox/local-cli/detox-build.js @@ -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); From e56a6d5b7baf0b32005c23f0ea02134dcbf72f15 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Thu, 15 Mar 2018 08:01:56 +0100 Subject: [PATCH 2/2] Update detox.js --- detox/local-cli/detox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detox/local-cli/detox.js b/detox/local-cli/detox.js index 808b50e9eb..485264d51d 100755 --- a/detox/local-cli/detox.js +++ b/detox/local-cli/detox.js @@ -5,7 +5,7 @@ const program = require('commander'); program .arguments('') .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'`)