fix: exclude e2e-docker tests from Vitest runner

The Playwright-based Docker e2e tests use test.describe() which is
incompatible with Vitest. Exclude tests/e2e-docker/ from Vitest's
test discovery, matching the existing tests/e2e/ exclusion.
This commit is contained in:
ashim-hq
2026-04-17 14:24:14 +08:00
parent 3dc98374e2
commit 8df18c56a6
+1
View File
@@ -24,6 +24,7 @@ export default defineConfig({
}, },
exclude: [ exclude: [
"tests/e2e/**", "tests/e2e/**",
"tests/e2e-docker/**",
"**/node_modules/**", "**/node_modules/**",
"**/dist/**", "**/dist/**",
"**/.{idea,git,cache,output,temp}/**", "**/.{idea,git,cache,output,temp}/**",