This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/playwright.config.ts
2025-03-07 14:59:06 +01:00

22 lines
418 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './tests',
timeout: 25 * 1000, // 30 seconds
webServer: {
command: 'pnpm dev',
port: 4321,
reuseExistingServer:true
},
use: {
headless: true,
screenshot: 'on',
video: 'off',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
}
],
});