// @ts-check const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './tests', timeout: 30_000, retries: 0, reporter: [['line'], ['html', { open: 'never' }]], use: { baseURL: process.env.APIX_ADMIN_URL || 'http://localhost:8084', // Cookie set by the auth filter; value must match APIX_API_KEY on the registry storageState: undefined, }, });