mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
17 lines
300 B
TypeScript
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',
|
|
}
|
|
});
|