15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
webServer: {
|
|
command: 'npm run dev',
|
|
port: 3000,
|
|
timeout: 60_000,
|
|
reuseExistingServer: true
|
|
},
|
|
use: {
|
|
baseURL: 'http://localhost:3000'
|
|
}
|
|
})
|
|
|
|
|