We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3da2ff commit c9317b5Copy full SHA for c9317b5
bin/helpers/utils.js
@@ -310,7 +310,7 @@ exports.setGeolocation = (bsConfig, args) => {
310
}
311
312
exports.isSpecTimeoutArgPassed = () => {
313
- return this.searchForOption('--spec-timeout') || this.searchForOption('-st') || this.searchForOption('--st');
+ return this.searchForOption('--spec-timeout') || this.searchForOption('-t');
314
315
exports.setSpecTimeout = (bsConfig, args) => {
316
let specTimeout = null;
bin/runner.js
@@ -168,7 +168,7 @@ var argv = yargs
168
type: "string",
169
default: undefined
170
},
171
- 'st': {
+ 't': {
172
alias: ['specTimeout'],
173
default: undefined,
174
describe: Constants.cliMessages.RUN.SPEC_TIMEOUT,
0 commit comments