Files
beekeeper-studio/apps/studio/playwright.ci.config.ts
2025-06-30 19:49:12 -06:00

17 lines
300 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './e2e',
timeout: 60000,
expect: {
timeout: 30000,
},
fullyParallel: false,
workers: 1,
use: {
actionTimeout: 10000,
trace: 'on-first-retry',
screenshot: 'only-on-failure',
}
});