Skip to content

Commit

Permalink
Merge pull request #1730 from ryedog/master
Browse files Browse the repository at this point in the history
Adding additional iojs flags
  • Loading branch information
Joshua Appelman committed Jun 7, 2015
2 parents d71a5c6 + 6a5a266 commit 2453716
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions bin/mocha
Expand Up @@ -36,17 +36,22 @@ process.argv.slice(2).forEach(function(arg){
case '--gc-global':
case '--harmony':
case '--es_staging':
case '--harmony-proxies':
case '--harmony_proxies':
case '--harmony_arrays':
case '--harmony_array_includes':
case '--harmony_arrow_functions':
case '--harmony_classes':
case '--harmony-collections':
case '--harmony_collections':
case '--harmony-generators':
case '--harmony_generators':
case '--harmony_modules':
case '--harmony-proxies':
case '--harmony_proxies':
case '--harmony_regexps':
case '--harmony_shipping':
case '--harmony_arrow_functions':
case '--harmony_sloppy':
case '--harmony_rest_parameters':
case '--harmony_proxies':
case '--harmony_classes':
case '--harmony_unicode':
case '--no-deprecation':
case '--prof':
case '--throw-deprecation':
Expand Down

1 comment on commit 2453716

@danielgtaylor
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like this change is missing from the _mocha executable, which is used by a few tools directly to e.g. generate code coverage.

Please sign in to comment.