Skip to content

Commit c9317b5

Browse files
committed
changed the timeout flags
1 parent a3da2ff commit c9317b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/helpers/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ exports.setGeolocation = (bsConfig, args) => {
310310
}
311311

312312
exports.isSpecTimeoutArgPassed = () => {
313-
return this.searchForOption('--spec-timeout') || this.searchForOption('-st') || this.searchForOption('--st');
313+
return this.searchForOption('--spec-timeout') || this.searchForOption('-t');
314314
}
315315
exports.setSpecTimeout = (bsConfig, args) => {
316316
let specTimeout = null;

bin/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ var argv = yargs
168168
type: "string",
169169
default: undefined
170170
},
171-
'st': {
171+
't': {
172172
alias: ['specTimeout'],
173173
default: undefined,
174174
describe: Constants.cliMessages.RUN.SPEC_TIMEOUT,

0 commit comments

Comments
 (0)