diff --git a/.gitignore b/.gitignore index 553383b..4820fda 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,4 @@ styled-system-studio /test-results/ /playwright-report/ /blob-report/ -/playwright/.cache/ +/e2e/.cache/ diff --git a/playwright/codegen.spec.ts b/e2e/codegen.spec.ts similarity index 100% rename from playwright/codegen.spec.ts rename to e2e/codegen.spec.ts diff --git a/playwright/parser.spec.ts b/e2e/parser.spec.ts similarity index 100% rename from playwright/parser.spec.ts rename to e2e/parser.spec.ts diff --git a/playwright.config.ts b/playwright.config.ts index 8e2ddbc..87f3456 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -4,7 +4,7 @@ import { defineConfig, devices } from '@playwright/test'; * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ - testDir: './playwright', + testDir: './e2e', fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0,