playwright.config.ts in Simple Analytics 1.110, at playwright.config.ts
| 1 | import { defineConfig } from '@playwright/test'; |
| 2 | |
| 3 | export default defineConfig({ |
| 4 | testDir: './tests/Browser', |
| 5 | timeout: 60000, |
| 6 | use: { |
| 7 | baseURL: 'http://localhost:8888', |
| 8 | headless: !process.env.HEADED, |
| 9 | launchOptions: { |
| 10 | args: ['--disable-features=PasswordManagerRedesign,AutofillServerCommunication'], |
| 11 | }, |
| 12 | }, |
| 13 | projects: [ |
| 14 | { |
| 15 | name: 'chromium', |
| 16 | use: { browserName: 'chromium' }, |
| 17 | }, |
| 18 | ], |
| 19 | }); |
| 20 |