You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 regels
771 B

  1. import { defineConfig, devices } from '@playwright/test'
  2. export default defineConfig({
  3. testDir: './tests', testMatch: 'review-live.spec.ts', workers: 1, fullyParallel: false,
  4. timeout: 120_000, expect: { timeout: 20_000 },
  5. outputDir: 'reports/review-20260905/live/results',
  6. reporter: [['list'], ['html', { outputFolder: 'reports/review-20260905/live/html', open: 'never' }], ['json', { outputFile: 'reports/review-20260905/live/results.json' }]],
  7. // Installed Edge provides the H.264 codec used by the actual offline training video.
  8. use: { ...devices['Desktop Edge'], channel: 'msedge', baseURL: 'http://127.0.0.1:6180', viewport: { width: 1440, height: 1000 }, locale: 'zh-CN', timezoneId: 'Asia/Shanghai', trace: 'off', video: 'off', screenshot: 'off' },
  9. })