Files
website/node_modules/@astrojs/starlight/playwright.config.ts
2024-05-06 17:15:30 -04:00

16 lines
282 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
forbidOnly: !!process.env['CI'],
projects: [
{
name: 'Chrome Stable',
use: {
...devices['Desktop Chrome'],
headless: true,
},
},
],
testMatch: '__e2e__/*.test.ts',
});