Skip to content

Commit d84d665

Browse files
author
John Doherty
committed
added missing line terminators
1 parent 1814bab commit d84d665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ program.on('--help', function () {
6161
global.browserName = program.browser;
6262

6363
// store Eyes Api globally (used within world.js to set Eyes)
64-
global.eyesKey = config.eye_key
64+
global.eyesKey = config.eye_key;
6565

6666
// used within world.js to import page objects
6767
global.pageObjectPath = path.resolve(program.pageObjects);
@@ -116,7 +116,7 @@ if (program.tags) {
116116
program.tags.forEach(function (tag) {
117117
process.argv.push('-t');
118118
process.argv.push(tag);
119-
})
119+
});
120120
}
121121

122122
// add strict option (fail if there are any undefined or pending steps)

0 commit comments

Comments
 (0)