From 5a4070f8647d54cb2da969ecf3288ea8add83c09 Mon Sep 17 00:00:00 2001 From: TJ Maynes Date: Sun, 21 Jul 2024 09:22:42 -0500 Subject: [PATCH] chore: move e2e to tests/ --- playwright.config.ts | 2 +- {e2e => tests/e2e}/fixtures.ts | 0 {e2e => tests/e2e}/home.spec.ts | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {e2e => tests/e2e}/fixtures.ts (100%) rename {e2e => tests/e2e}/home.spec.ts (100%) diff --git a/playwright.config.ts b/playwright.config.ts index 5f38d19..3f170a9 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,7 +10,7 @@ import { defineConfig, devices } from '@playwright/test' * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ - testDir: './e2e', + testDir: './tests/e2e', /* Run test in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ diff --git a/e2e/fixtures.ts b/tests/e2e/fixtures.ts similarity index 100% rename from e2e/fixtures.ts rename to tests/e2e/fixtures.ts diff --git a/e2e/home.spec.ts b/tests/e2e/home.spec.ts similarity index 100% rename from e2e/home.spec.ts rename to tests/e2e/home.spec.ts