7 lines
299 B
TypeScript
7 lines
299 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
use: { baseURL: 'http://127.0.0.1:1420', viewport: { width: 1280, height: 850 } },
|
|
webServer: { command: 'npm run dev', url: 'http://127.0.0.1:1420', reuseExistingServer: !process.env.CI },
|
|
});
|