upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/playwright.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/playwright.config.mjs')
-rw-r--r--tests/playwright.config.mjs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/playwright.config.mjs b/tests/playwright.config.mjs
index fee0815..d4118b8 100644
--- a/tests/playwright.config.mjs
+++ b/tests/playwright.config.mjs
@@ -3,14 +3,16 @@ import { defineConfig } from '@playwright/test';
3export default defineConfig({ 3export default defineConfig({
4 testDir: '.', 4 testDir: '.',
5 testMatch: '*.spec.mjs', 5 testMatch: '*.spec.mjs',
6 timeout: 60000, 6 timeout: 120000,
7 retries: 0, 7 retries: 0,
8 use: { 8 use: {
9 headless: true, 9 headless: true,
10 viewport: { width: 1280, height: 900 }, 10 viewport: { width: 1280, height: 900 },
11 screenshot: 'only-on-failure', 11 screenshot: 'on',
12 video: 'on',
12 trace: 'on-first-retry', 13 trace: 'on-first-retry',
13 }, 14 },
14 reporter: [['list'], ['html', { open: 'never' }]], 15 reporter: [['list'], ['html', { open: 'never' }]],
16 outputDir: 'test-results',
15 workers: 1, 17 workers: 1,
16}); 18});