const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './tests', timeout: 30000, expect: { timeout: 10000 }, retries: 0, use: { baseURL: 'https://eetdagboek.vantwout.dev', headless: true, viewport: { width: 390, height: 844 }, // iPhone 14 size ignoreHTTPSErrors: true, }, });