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 447dd8c commit 9ab3f2aCopy full SHA for 9ab3f2a
package.json
@@ -52,8 +52,10 @@
52
],
53
"scripts": {
54
"dev": "esno ./scripts/dev.mts",
55
- "test-unit": "vitest run",
56
- "coverage": "vitest run --coverage",
+ "test": "vitest run",
+ "test:watch": "vitest",
57
+ "test:coverage": "vitest run --coverage",
58
+ "test:ui": "vitest --ui",
59
"doc": "vitepress dev --open /README",
60
"build": "vite build",
61
"release": "esno ./scripts/release.mts",
scripts/release.mts
@@ -22,7 +22,7 @@ async function release() {
22
}
23
24
console.log(cyan('Unit testing...'))
25
- if (spawn.sync('pnpm', ['test-unit'], { stdio: 'inherit' }).status === 1) {
+ if (spawn.sync('pnpm', ['test'], { stdio: 'inherit' }).status === 1) {
26
return
27
28
0 commit comments