Skip to content

Commit

Permalink
fix(CI): actually get the tests to run
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Aug 16, 2023
1 parent be2d027 commit 0200aed
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 @@ -34,8 +34,8 @@
"clean": "rm -rf lib/ dist/ coverage/ .nyc_output/ jsdoc/",
"docs": "yarn build:docs && jsdoc -c .jsdoc.json --verbose",
"pretest": "yarn tsc -p ./test/tsconfig.json",
"test": "yarn pretest && yarn test:node && yarn test:integration && yarn test:browser",
"test:node": "yarn _nyc mocha --recursive 'test/unit/**/*.js'",
"test": "yarn test:node && yarn test:integration && yarn test:browser",
"test:node": "yarn pretest && yarn _nyc mocha --recursive 'test/unit/**/*.js'",
"test:integration": "yarn _nyc mocha --recursive 'test/integration/**/*.js'",
"test:browser": "karma start ./karma.conf.js",
"fmt": "yarn eslint -c .eslintrc.js src/ --fix && yarn _prettier",
Expand Down

0 comments on commit 0200aed

Please sign in to comment.