feat(playwright): Remove Cypress auth tests in favor of Playwright auth tests (#35938)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Joe Li
2025-11-10 14:29:01 -08:00
committed by GitHub
parent b85621e9a7
commit 64ca080bb8
7 changed files with 221 additions and 57 deletions

View File

@@ -26,6 +26,13 @@ export default defineConfig({
// Test directory
testDir: './playwright/tests',
// Conditionally ignore experimental tests based on env var
// When INCLUDE_EXPERIMENTAL=true, experimental tests are included
// Otherwise, they are excluded (default for required tests)
testIgnore: process.env.INCLUDE_EXPERIMENTAL
? undefined
: '**/experimental/**',
// Timeout settings
timeout: 30000,
expect: { timeout: 8000 },