19 lines
429 B
TypeScript
19 lines
429 B
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/e2e',
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: 'http://localhost:3000',
|
|
headless: true,
|
|
},
|
|
webServer: {
|
|
command: 'npx vite preview --strictPort --port 3000',
|
|
port: 3000,
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
projects: [
|
|
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
|
|
],
|
|
});
|