Skip to content

Commit

Permalink
FIX Mistake in package.json run test on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
daix committed Jan 14, 2019
1 parent f95ef54 commit d86c6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"eslint": "eslint --fix lib/**",
"test": "npm run launchtest",
"test-win": "set NODE_ENV=test&& mocha --recursive *.test.js lib spec",
"launchtest": "NODE_ENV=test mocha --recursive --reporter $(find -name '*.test.js' -not -path '**/node_modules/**' )",
"launchtest": "NODE_ENV=test mocha --recursive $(find -name '*.test.js' -not -path '**/node_modules/**' )",
"cover": "nyc npm test",
"cover-win": "nyc npm run test-win",
"circle_ci_test": "NODE_ENV=test nyc node_modules/mocha/bin/_mocha --recursive --reporter spec $(find -name '*.test.js' -not -path '**/node_modules/**' )"
Expand Down

0 comments on commit d86c6fa

Please sign in to comment.