Skip to content

Commit ca045e1

Browse files
author
John Doherty
committed
added -x switch to allow setting global timeout via command line
1 parent 6338da2 commit ca045e1

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.MD

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ node ./node_modules/selenium-cucumber-js/index.js -s ./step-definitions
2828
-j, --junit <path> output path to save junit-report.xml defaults to ./reports
2929
-t, --tags <tagName> name of tag to run
3030
-f, --featureFile <path> a specific feature file to run
31+
-x, --timeOut <n> steps definition timeout in milliseconds. defaults to 10 seconds
3132
```
3233

3334
By default tests are run using Google Chrome, to run tests using another browser supply the name of that browser along with the `-b` switch. Available options are:

index.js

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ program
2121
.option('-j, --junit <path>', 'output path to save junit-report.xml defaults to ./reports')
2222
.option('-t, --tags <tagName>', 'name of tag to run')
2323
.option('-f, --featureFile <path>', 'a specific feature file to run')
24+
.option('-x, --timeOut <n>', 'steps definition timeout in milliseconds. defaults to 10 seconds', parseInt)
2425
.parse(process.argv);
2526

2627
program.on('--help', function() {
@@ -39,6 +40,9 @@ global.reportsPath = path.resolve(program.reports);
3940
// used within world.js to output junit reports
4041
global.junitPath = path.resolve(program.junit || program.reports);
4142

43+
// set the default timeout to 10 seconds if not already globally defined or passed via the command line
44+
global.DEFAULT_TIMEOUT = global.DEFAULT_TIMEOUT || program.timeOut || 10 * 1000;
45+
4246
// used within world.js to import shared objects into the shared namespace
4347
global.sharedObjectPaths = program.sharedObjects.map(function(item){
4448
return path.resolve(item);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-cucumber-js",
3-
"version": "1.3.5",
3+
"version": "1.3.6",
44
"description": "A debuggable JS BDD framework that uses the official selenium-webdriver for Node and cucumber-js",
55
"main": "index.js",
66
"scripts": {

runtime/world.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ var fs = require('fs-plus'),
1919
reporter = require('cucumber-html-reporter'),
2020
cucumberJunit = require('cucumber-junit');
2121

22-
if (!global.DEFAULT_TIMEOUT) {
23-
global.DEFAULT_TIMEOUT = 10 * 1000; // 10 second default
24-
}
25-
2622
/**
2723
* create the selenium browser based on global var set in index.js
2824
*/
@@ -144,7 +140,7 @@ module.exports = function () {
144140
this.World = World;
145141

146142
// set the default timeout for all tests
147-
this.setDefaultTimeout(DEFAULT_TIMEOUT);
143+
this.setDefaultTimeout(global.DEFAULT_TIMEOUT);
148144

149145
// create the driver before scenario if it's not instantiated
150146
this.registerHandler('BeforeScenario', function(scenario) {

0 commit comments

Comments
 (0)