14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
use: {
|
|
baseURL: 'http://localhost:3000'
|
|
},
|
|
webServer: {
|
|
command: 'pnpm dev',
|
|
url: 'http://localhost:3000',
|
|
timeout: 120_000,
|
|
reuseExistingServer: !process.env.CI
|
|
}
|
|
});
|