We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9ff32 commit 407a3c0Copy full SHA for 407a3c0
2 files changed
.github/workflows/e2e-webapp.yml
@@ -85,4 +85,4 @@ jobs:
85
run: pnpm run build --filter webapp
86
87
- name: 🧪 Run Webapp E2E Tests
88
- run: cd apps/webapp && pnpm exec vitest run test/api-auth.e2e.test.ts --reporter=default
+ run: cd apps/webapp && pnpm exec vitest run --config vitest.e2e.config.ts --reporter=default
apps/webapp/vitest.e2e.config.ts
@@ -0,0 +1,12 @@
1
+import { defineConfig } from "vitest/config";
2
+import tsconfigPaths from "vite-tsconfig-paths";
3
+
4
+export default defineConfig({
5
+ test: {
6
+ include: ["test/**/*.e2e.test.ts"],
7
+ globals: true,
8
+ pool: "forks",
9
+ },
10
+ // @ts-ignore
11
+ plugins: [tsconfigPaths({ projects: ["./tsconfig.json"] })],
12
+});
0 commit comments