You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ NODE_ENV=test istanbul --include-all-sources cover _mocha -- -u bdd $(find test -name '*.js') && istanbul check-coverage && echo All tests passed �
'NODE_ENV' is not recognized as an internal or external command,
operable program or batch file.
I then copied the 'test' script and create a test:win script:
"test:win": "SET NODE_ENV=test istanbul --include-all-sources cover _mocha -- -u bdd $(find test -name '*.js') && istanbul check-coverage && echo All tests passed 👍",
I ran 'yarn test:win', I got the istanbul's error:
yarn test:win
yarn run v1.2.1
$ SET NODE_ENV=test istanbul --include-all-sources cover _mocha -- -u bdd $(find test -name '*.js') && istanbul check-coverage && echo All tests passed �
ERROR: No coverage files found.
Try "istanbul help" for usage
Do I need to manually create a coverage file or am I missing any dependencies?
Thanks
The text was updated successfully, but these errors were encountered:
When I tried 'yarn test' first time, I got error:
I then copied the 'test' script and create a test:win script:
"test:win": "SET NODE_ENV=test istanbul --include-all-sources cover _mocha -- -u bdd $(find test -name '*.js') && istanbul check-coverage && echo All tests passed 👍",
I ran 'yarn test:win', I got the istanbul's error:
Do I need to manually create a coverage file or am I missing any dependencies?
Thanks
The text was updated successfully, but these errors were encountered: