video-shuoshan/web/playwright-test.config.ts
seaislee1209 ba33c35dd8
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 4m13s
add test
2026-04-04 19:38:36 +08:00

13 lines
266 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './test/e2e',
timeout: 30000,
retries: 0,
use: {
baseURL: 'https://airflow-studio.test.airlabs.art',
headless: true,
screenshot: 'only-on-failure',
},
});