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 91fe08e commit 654c27eCopy full SHA for 654c27e
cli/package.json
@@ -91,7 +91,7 @@
91
"strip-ansi": "6.0.1",
92
"tsx": "4.20.5",
93
"typescript": "~5.9.2",
94
- "vitest": "3.2.4"
+ "vitest": "^3.2.4"
95
},
96
"files": [
97
"bin",
cli/vitest.config.ts
@@ -0,0 +1,9 @@
1
+import { defineConfig } from 'vitest/config'
2
+
3
+export default defineConfig({
4
+ test: {
5
+ include: ['test/**/*.spec.ts'],
6
+ globals: true,
7
+ environment: 'node',
8
+ },
9
+})
0 commit comments