Initial Commit
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

This commit is contained in:
2026-08-28 22:55:32 +10:00
parent d8d4ecbe8a
commit f00405ed24
16 changed files with 1008 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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,
},
});