diff --git a/playwright.config.ts b/playwright.config.ts index 175f4b1..b535a12 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -11,7 +11,7 @@ import { defineConfig, devices } from '@playwright/test'; * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ - testDir: './tests', + testDir: './test-playwright', /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ diff --git a/tests/example.spec.ts b/test-playwright/example.spec.ts similarity index 100% rename from tests/example.spec.ts rename to test-playwright/example.spec.ts diff --git a/tests/new-id-from-seed.spec.ts b/test-playwright/new-id-from-seed.spec.ts similarity index 100% rename from tests/new-id-from-seed.spec.ts rename to test-playwright/new-id-from-seed.spec.ts diff --git a/tests/validate-contact-info-clipboard.spec.ts b/test-playwright/validate-contact-info-clipboard.spec.ts similarity index 100% rename from tests/validate-contact-info-clipboard.spec.ts rename to test-playwright/validate-contact-info-clipboard.spec.ts diff --git a/tsconfig.json b/tsconfig.json index 256daeb..b973a9d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,8 +26,8 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", - "tests/**/*.ts", - "tests/**/*.tsx" + "test-playwright/**/*.ts", + "test-playwright/**/*.tsx" ], "exclude": [ "node_modules"