phase 16 implementation

This commit is contained in:
root
2026-06-25 20:08:39 -04:00
parent 5d017f533a
commit c43620a005
248 changed files with 18458 additions and 90 deletions
+6
View File
@@ -6,6 +6,7 @@ const serverCommand = process.env.PLAYWRIGHT_SERVER_COMMAND ?? 'pnpm start';
export default defineConfig({
testDir: './tests',
testMatch: ['browser/**/*.spec.ts', 'a11y/**/*.spec.ts', 'visual/**/*.spec.ts'],
fullyParallel: true,
forbidOnly: Boolean(process.env.CI),
retries: process.env.CI ? 2 : 0,
@@ -50,6 +51,11 @@ export default defineConfig({
SITE_ORIGIN: baseURL,
PUBLIC_RELEASE_APPROVED: 'false',
COMPONENT_FIXTURES_ENABLED: 'true',
NEXT_PUBLIC_DEMO_ENABLED: 'true',
DEMO_SUBMISSION_MODE: 'local',
DEMO_LOCAL_TEST_MODE: 'true',
DEMO_TEST_SCENARIOS_ENABLED: 'true',
NEXT_PUBLIC_ANALYTICS_MODE: 'disabled',
HOSTNAME: '127.0.0.1',
PORT: '3000',
},