forked from sagnik/Project_Velocity
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
timeout: 30_000,
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:4173',
|
|
headless: true,
|
|
},
|
|
webServer: {
|
|
command: 'npm run dev -- --host 127.0.0.1 --port 4173',
|
|
url: 'http://127.0.0.1:4173',
|
|
reuseExistingServer: true,
|
|
timeout: 120_000,
|
|
},
|
|
});
|