const { defineConfig, devices } = require('@playwright/test');
module.exports = defineConfig({
testDir: '.',
testMatch: ['verify.spec.mjs'],
timeout: 30000,
fullyParallel: false,
reporter: 'list',
use: {
baseURL: 'http://localhost:5173',
ignoreHTTPSErrors: true,
headless: true,
},
projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
});