Skip to content

Commit 09b435a

Browse files
committed
chore: fix vitest config
1 parent b5ae4e2 commit 09b435a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vitest.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/// <reference types="vitest" />
22
import solidPlugin from "vite-plugin-solid";
3-
import { defineConfig, type Plugin } from "vitest/config";
3+
import { defineConfig } from "vitest/config";
44

55
export default defineConfig({
6-
plugins: [solidPlugin() as Plugin],
6+
plugins: [solidPlugin()],
77

88
test: {
99
environment: "jsdom",
@@ -17,7 +17,7 @@ export default defineConfig({
1717
},
1818
setupFiles: "./src/vitest.ts",
1919
coverage: {
20-
all: true,
20+
enabled: true,
2121
include: ["src/"],
2222
reporter: ["text", "html-spa"],
2323
},

0 commit comments

Comments
 (0)