From 99497488f343826ee5847a75d6ecc6cc5b042a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20J=C3=A4derberg?= Date: Wed, 3 Dec 2025 08:52:08 +0000 Subject: [PATCH] Merged in chore/ignore-e2e-tests-in-ci (pull request #3285) chore: ignore e2e tests when running yarn test * chore: ignore e2e tests when running yarn test --- apps/scandic-web/tests/{ => e2e}/loginUtil.ts | 0 apps/scandic-web/tests/{ => e2e}/profile/mybenefits.spec.ts | 0 apps/scandic-web/tests/{ => e2e}/profile/mypoints.spec.ts | 0 apps/scandic-web/tests/{ => e2e}/profile/mystays.spec.ts | 0 apps/scandic-web/tests/{ => e2e}/profile/overview.spec.ts | 0 apps/scandic-web/tests/{ => e2e}/testdata.ts | 0 apps/scandic-web/vitest.config.ts | 1 + 7 files changed, 1 insertion(+) rename apps/scandic-web/tests/{ => e2e}/loginUtil.ts (100%) rename apps/scandic-web/tests/{ => e2e}/profile/mybenefits.spec.ts (100%) rename apps/scandic-web/tests/{ => e2e}/profile/mypoints.spec.ts (100%) rename apps/scandic-web/tests/{ => e2e}/profile/mystays.spec.ts (100%) rename apps/scandic-web/tests/{ => e2e}/profile/overview.spec.ts (100%) rename apps/scandic-web/tests/{ => e2e}/testdata.ts (100%) diff --git a/apps/scandic-web/tests/loginUtil.ts b/apps/scandic-web/tests/e2e/loginUtil.ts similarity index 100% rename from apps/scandic-web/tests/loginUtil.ts rename to apps/scandic-web/tests/e2e/loginUtil.ts diff --git a/apps/scandic-web/tests/profile/mybenefits.spec.ts b/apps/scandic-web/tests/e2e/profile/mybenefits.spec.ts similarity index 100% rename from apps/scandic-web/tests/profile/mybenefits.spec.ts rename to apps/scandic-web/tests/e2e/profile/mybenefits.spec.ts diff --git a/apps/scandic-web/tests/profile/mypoints.spec.ts b/apps/scandic-web/tests/e2e/profile/mypoints.spec.ts similarity index 100% rename from apps/scandic-web/tests/profile/mypoints.spec.ts rename to apps/scandic-web/tests/e2e/profile/mypoints.spec.ts diff --git a/apps/scandic-web/tests/profile/mystays.spec.ts b/apps/scandic-web/tests/e2e/profile/mystays.spec.ts similarity index 100% rename from apps/scandic-web/tests/profile/mystays.spec.ts rename to apps/scandic-web/tests/e2e/profile/mystays.spec.ts diff --git a/apps/scandic-web/tests/profile/overview.spec.ts b/apps/scandic-web/tests/e2e/profile/overview.spec.ts similarity index 100% rename from apps/scandic-web/tests/profile/overview.spec.ts rename to apps/scandic-web/tests/e2e/profile/overview.spec.ts diff --git a/apps/scandic-web/tests/testdata.ts b/apps/scandic-web/tests/e2e/testdata.ts similarity index 100% rename from apps/scandic-web/tests/testdata.ts rename to apps/scandic-web/tests/e2e/testdata.ts diff --git a/apps/scandic-web/vitest.config.ts b/apps/scandic-web/vitest.config.ts index 9fa48e2a6..1d2911a51 100644 --- a/apps/scandic-web/vitest.config.ts +++ b/apps/scandic-web/vitest.config.ts @@ -22,5 +22,6 @@ export default defineConfig({ test: { environment: "jsdom", setupFiles: ["./vitest-setup.ts"], + exclude: ["./tests/e2e/*"], }, })