// @ts-check const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './tests', fullyParallel: true, forbidOnly: !!process.env.CI, retries: 0, workers: 1, reporter: 'list', use: { baseURL: 'http://localhost', trace: 'on-first-retry', ignoreHTTPSErrors: true, }, projects: [ { name: 'chromium', use: { browserName: 'chromium' }, }, ], });