// @ts-check const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './test/e2e', timeout: 30000, retries: 0, use: { baseURL: process.env.SIS_URL || 'http://localhost:8080', headless: true, }, });