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 1814bab commit d84d665Copy full SHA for d84d665
index.js
@@ -61,7 +61,7 @@ program.on('--help', function () {
61
global.browserName = program.browser;
62
63
// store Eyes Api globally (used within world.js to set Eyes)
64
-global.eyesKey = config.eye_key
+global.eyesKey = config.eye_key;
65
66
// used within world.js to import page objects
67
global.pageObjectPath = path.resolve(program.pageObjects);
@@ -116,7 +116,7 @@ if (program.tags) {
116
program.tags.forEach(function (tag) {
117
process.argv.push('-t');
118
process.argv.push(tag);
119
- })
+ });
120
}
121
122
// add strict option (fail if there are any undefined or pending steps)
0 commit comments