Files
homeproz/playwright.config.js
Hanson.xyz Dev acc8ac87a0 wip
2026-01-04 17:50:08 -06:00

23 lines
430 B
JavaScript
Executable File

// @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' },
},
],
});