Skip to content

Commit 3c39e4a

Browse files
committed
Adding run command line options: --spec/--specs/-s and --env
1 parent 20c9928 commit 3c39e4a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

bin/runner.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,17 @@ var argv = yargs
164164
describe: Constants.cliMessages.RUN.BUILD_NAME,
165165
type: "string",
166166
default: undefined
167+
},
168+
's': {
169+
alias: ['specs', 'spec'],
170+
describe: Constants.cliMessages.RUN.SPECS_DESCRIPTION,
171+
type: "array",
172+
default: undefined
173+
},
174+
'env': {
175+
describe: Constants.cliMessages.RUN.ENV_DESCRIPTION,
176+
type: "array",
177+
default: undefined
167178
}
168179
})
169180
.help('help')

0 commit comments

Comments
 (0)