Skip to content

Commit

Permalink
test(pkg): Fix test scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jcowman2 committed Dec 17, 2018
1 parent c01be89 commit c14df17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@
"dist/"
],
"scripts": {
"test": "jest",
"test": "npm run test-unit && npm run test-cases",
"test-unit": "jest test/unit --coverage",
"test-cases": "jest test/cases",
"build": "rollup -c && tsc -d --emitDeclarationOnly --declarationDir ./dist/src",
"clean": "npm run clean-dist && npm run clean-tests",
"clean-dist": "trash dist",
"clean-tests": "trash test/cases/**/*.regal.js",
"check": "npm run build && npm run test && npm run clean",
"publish-coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "node node_modules/tslint/bin/tslint -c tslint.json --format stylish 'src/**/*.ts'",
"commit": "git-cz"
Expand Down

0 comments on commit c14df17

Please sign in to comment.