Skip to content

Commit 4f50be1

Browse files
🔧 - chore: fix exclude paths in vitest.config.ts
1 parent b56c25d commit 4f50be1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/vitest.config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ export default defineConfig({
1212
include: ["src/**/*"],
1313
exclude: [
1414
"/node_modules/",
15-
"/fixtures/",
16-
".*\\.test\\.tsx?",
17-
".*\\.stories\\.tsx?",
15+
"/**/fixtures/*",
16+
"/**/*.test.tsx",
17+
"/**/*.stories.tsx",
1818
],
1919
},
2020
},

0 commit comments

Comments
 (0)