|
import { defineConfig } from '@playwright/test';
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
use: { baseURL: 'http://localhost:5173' },
|
|
webServer: {
|
|
command: 'npm run dev',
|
|
url: 'http://localhost:5174',
|
|
reuseExistingServer: true,
|
|
timeout: 120_000,
|
|
},
|
|
});
|