Skip to content

Commit e85d2b2

Browse files
committed
fix: bring back vitest defaults
1 parent 8e31fb7 commit e85d2b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmp/compiler/vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { defineConfig } from "vitest/config";
1+
import { configDefaults, defineConfig } from "vitest/config";
22

33
export default defineConfig({
44
test: {
55
globals: true,
66
environment: "node",
77
snapshotSerializers: ["./src/react/shared/test-serializer.ts"],
8-
exclude: ["**/tests/e2e/**"],
8+
exclude: [...configDefaults.exclude, "**/tests/e2e/**"],
99
},
1010
});

0 commit comments

Comments
 (0)