We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5ae4e2 commit 09b435aCopy full SHA for 09b435a
vitest.config.ts
@@ -1,9 +1,9 @@
1
/// <reference types="vitest" />
2
import solidPlugin from "vite-plugin-solid";
3
-import { defineConfig, type Plugin } from "vitest/config";
+import { defineConfig } from "vitest/config";
4
5
export default defineConfig({
6
- plugins: [solidPlugin() as Plugin],
+ plugins: [solidPlugin()],
7
8
test: {
9
environment: "jsdom",
@@ -17,7 +17,7 @@ export default defineConfig({
17
},
18
setupFiles: "./src/vitest.ts",
19
coverage: {
20
- all: true,
+ enabled: true,
21
include: ["src/"],
22
reporter: ["text", "html-spa"],
23
0 commit comments