I want to run my tests using node --harmony
I tried istanbul cover ./test/index.js -- --harmony but that does not work.
Node arguments are not supported. You'll have to use the long form, as in:
node --harmony ./node_modules/istanbul/lib/cli.js cover ./test/index.js
etc. rather than using istanbul as an executable.
@gotwarlost nice!
Looks like it is working for you. Closing.
@gotwarlost is there no way this could be added, perhaps in the 1.0 alpha?
Most helpful comment
Node arguments are not supported. You'll have to use the long form, as in:
etc. rather than using
istanbulas an executable.