Skip to content

Commit cc7d1dd

Browse files
author
John Doherty
committed
cleaned up some eslint errors in index.js
1 parent 152a13a commit cc7d1dd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

index.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ function collectPaths(value, paths) {
1212
}
1313

1414
var config = {
15-
"step_def_dir": "./step-definitions",
16-
"page_obj_dir": "./page-objects",
17-
"shared_obj_dir": "./shared-objects",
18-
"reports_dir": "./reports",
19-
"default_browser": "chrome",
20-
"timeout": 10000
15+
step_def_dir: './step-definitions',
16+
page_obj_dir: './page-objects',
17+
shared_obj_dir: './shared-objects',
18+
reports_dir: './reports',
19+
default_browser: 'chrome',
20+
timeout: 10000
2121
};
22+
2223
var configFileName = path.resolve(process.cwd(), 'selenium-cucumber-js.json');
24+
2325
if (fs.isFileSync(configFileName)) {
2426
config = Object.assign(config, require(configFileName));
2527
}

0 commit comments

Comments
 (0)