Skip to content

Commit

Permalink
fixed some small linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
beatfactor committed Jun 25, 2014
1 parent c89a983 commit bb261bf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bin/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ cli.command('filter')
.defaults('')
.alias('f');

// $ nightwatch -s
// $ nightwatch --skipgroup
// $ nightwatch -h
// $ nightwatch --help
cli.command('help')
.description('Shows this help.')
.alias('h');

// $ nightwatch -v
// $ nightwatch --version
cli.command('version')
.alias('v')
Expand All @@ -80,8 +81,8 @@ try {
} else {
process.chdir(process.cwd());

var CliRunner = new CliRunner(argv);
CliRunner.init().runTests();
var runner = new CliRunner(argv);
runner.init().runTests();
}
} catch (ex) {
Logger.error('There was an error while starting the test runner:\n');
Expand Down

0 comments on commit bb261bf

Please sign in to comment.