feat/ponder-lm-indexing (#142)

This commit is contained in:
johba 2026-02-18 00:19:05 +01:00
parent de3c8eef94
commit 31063379a8
107 changed files with 12517 additions and 367 deletions

View file

@ -2,13 +2,14 @@ import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './tests/e2e',
testMatch: '**/*.spec.ts',
testMatch: process.env.CI ? '[0-9]*.spec.ts' : '**/*.spec.ts',
fullyParallel: false,
timeout: 5 * 60 * 1000,
timeout: 10 * 60 * 1000, // Increased from 5 to 10 minutes for persona journeys with multiple buys
expect: {
timeout: 30_000,
},
retries: process.env.CI ? 1 : 0,
workers: process.env.CI ? 1 : undefined,
use: {
headless: true,
viewport: { width: 1280, height: 720 },