Skip to content

Commit

Permalink
Fix the test-all script (#182)
Browse files Browse the repository at this point in the history
Vitest doesn’t have a flag `--forceExit`. This was a remnant from when
Jest was used.
  • Loading branch information
remcohaszing authored Aug 29, 2024
1 parent 6bf7dd2 commit deaa860
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 @@ -67,7 +67,7 @@
"test-unit": "vitest run --coverage ./test/unit",
"test-integration": "vitest run ./test/integration",
"tsd": "tsd",
"test-all": "npm run tsd && vitest run --coverage --forceExit",
"test-all": "npm run tsd && vitest run --coverage",
"test": "npm run tsd && npm run test-unit",
"fix:formatting": "prettier --write .",
"lint:formatting": "prettier --check ."
Expand Down

0 comments on commit deaa860

Please sign in to comment.