Files
dredgegram/playwright/playwright.config.js
dredgy f00405ed24
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s
Initial Commit
2026-08-28 22:55:32 +10:00

13 lines
274 B
JavaScript

import { defineConfig } from '@playwright/test';
import path from 'path';
export default defineConfig({
testDir: '.',
globalSetup: path.resolve(__dirname, 'global-setup.js'),
timeout: 120_000,
reporter: 'line',
use: {
headless: true,
},
});