| 12345678910111213141516171819 |
- import { defineConfig, devices } from '@playwright/test';
- export default defineConfig({
- testDir: './e2e',
- timeout: 60_000,
- expect: {
- timeout: 10_000,
- },
- fullyParallel: false,
- reporter: [['list']],
- use: {
- baseURL: 'http://127.0.0.1:4300',
- channel: 'msedge',
- headless: true,
- trace: 'retain-on-failure',
- screenshot: 'only-on-failure',
- ...devices['Desktop Chrome'],
- },
- });
|