Skip to content

Commit

Permalink
feat(cli): add -R, --retries <count> option
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Aug 19, 2020
1 parent 9656ba4 commit 58c8250
Show file tree
Hide file tree
Showing 24 changed files with 674 additions and 361 deletions.
6 changes: 6 additions & 0 deletions detox/__tests__/setupJest.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ function callCli(modulePath, cmd) {

return yargs
.scriptName('detox')
.parserConfiguration({
'boolean-negation': false,
'camel-case-expansion': false,
'dot-notation': false,
'duplicate-arguments-array': false,
})
.command(spiedModule)
.exitProcess(false)
.fail((msg, err) => reject(err || msg))
Expand Down
1 change: 1 addition & 0 deletions detox/local-cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ yargs
.scriptName('detox')
.parserConfiguration({
'boolean-negation': false,
'camel-case-expansion': false,
'dot-notation': false,
'duplicate-arguments-array': false,
})
Expand Down
Loading

0 comments on commit 58c8250

Please sign in to comment.