| 123456789101112131415161718192021222324252627282930 |
- /**
- * Playwright E2E 测试配置
- */
- module.exports = {
- testDir: './e2e',
- timeout: 60000,
- retries: 0,
- use: {
- baseURL: 'http://localhost:8082',//cfc.iwintrue.com',
- headless: true,
- viewport: { width: 375, height: 812 },
- ignoreHTTPSErrors: true,
- actionTimeout: 15000,
- navigationTimeout: 30000,
- },
- projects: [
- {
- name: 'chromium',
- use: {
- browserName: 'chromium',
- channel: 'chrome',
- },
- },
- ],
- reporter: [
- ['html', { outputFolder: 'playwright-report' }],
- ['list'],
- ],
- }
|