All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 4m13s
13 lines
266 B
TypeScript
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',
|
|
},
|
|
});
|