Skip to content

Commit

Permalink
resolves #1296: evidently the order matters
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Hiller committed Aug 5, 2014
1 parent e6a5388 commit 3997ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/_mocha
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ program
.version(JSON.parse(fs.readFileSync(__dirname + '/../package.json', 'utf8')).version)
.usage('[debug] [options] [files]')
.option('-A, --async-only', "force all tests to take a callback (async)")
.option('-c, --colors', 'force enabling of colors')
.option('-C, --no-colors', 'force disabling of colors')
.option('-G, --growl', 'enable growl notification support')
.option('-R, --reporter <name>', 'specify the reporter to use', 'spec')
.option('-S, --sort', "sort test files")
.option('-b, --bail', "bail after first test failure")
.option('-c, --colors', 'force enabling of colors')
.option('-d, --debug', "enable node's debugger, synonym for node --debug")
.option('-g, --grep <pattern>', 'only run tests matching <pattern>')
.option('-gc', '--expose-gc', 'expose gc extension')
Expand Down

0 comments on commit 3997ad0

Please sign in to comment.