Skip to content

Commit

Permalink
only run integration tests after unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon McAllister authored and Simon McAllister committed Mar 19, 2024
1 parent 68560e2 commit 3065553
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 @@ -43,7 +43,7 @@
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:eslint": "eslint -c .eslintrc.cjs src/**",
"lint:ts": "tsc --noEmit -p .tsconfig.json",
"test": "jest -c .jestrc.cjs",
"test": "npm run test:unit && npm run test:integration",
"test:clear": "jest --clear-cache",
"test:integration": "jest -c .jestrc.cjs src/__tests__/integration",
"test:unit": "jest -c .jestrc.cjs src/__tests__/unit"
Expand Down

0 comments on commit 3065553

Please sign in to comment.