Skip to content

Commit

Permalink
fix(test): prefer mocha over mocha test
Browse files Browse the repository at this point in the history
  • Loading branch information
imhoffd committed Jun 25, 2018
1 parent 05db9f6 commit 9122393
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 @@ -13,11 +13,11 @@
"build": "npm run clean && npm run tsc",
"src:tsc": "tsc",
"src:tsc:watch": "npm run src:tsc -- -w",
"test": "mocha test --recursive",
"test": "mocha --recursive",
"test:tsc": "tsc -p tsconfig.test.json",
"test:tsc:watch": "npm run test:tsc -- -w",
"test:ci": "npm run test -- --reporter mocha-junit-reporter",
"test:watch": "mocha test --watch --recursive",
"test:watch": "mocha --watch --recursive",
"test:coverage": "npm run clean && npm run build && nyc --reporter=lcov --reporter=text-lcov npm test && nyc report --reporter=text-lcov | coveralls",
"tsc": "npm run src:tsc && npm run test:tsc",
"tsc:watch": "concurrently --names 'src,test' 'npm run src:tsc:watch -- --preserveWatchOutput' 'npm run test:tsc:watch -- --preserveWatchOutput'",
Expand Down

0 comments on commit 9122393

Please sign in to comment.