Skip to content

Commit

Permalink
Changed test command in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Shegox committed May 3, 2019
1 parent cf3f2d7 commit 9c089af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"scripts": {
"start": "npm run build -- --watch",
"build": "webpack --config webpack.config.js",
"test": "npm run lint && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' node_modules/.bin/mocha --require ts-node/register test/*.ts",
"mocha": "mocha --compilers js:babel-register --timeout 1500 --slow 30 --use_strict",
"test": "npm run lint && npm run mocha",
"mocha": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register test/*.ts",
"clean": "rm -rf build",
"flow": "flow",
"lint": "eslint --ext ts src",
Expand Down

0 comments on commit 9c089af

Please sign in to comment.