We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0591ca4 commit 1638a5aCopy full SHA for 1638a5a
package.json
@@ -18,7 +18,7 @@
18
"prettier": "prettier --check . --cache",
19
"test": "yarn lint && yarn tsc && yarn prettier && yarn unit",
20
"tsc": "tsc --noEmit",
21
- "unit": "vitest run"
+ "unit": "vitest"
22
},
23
"keywords": [
24
"array",
vitest.config.ts
@@ -0,0 +1,7 @@
1
+import { defineConfig } from 'vitest/config';
2
+
3
+export default defineConfig({
4
+ test: {
5
+ watch: false,
6
+ },
7
+});
0 commit comments