mitai-jinkendo/playwright.config.js
Lars ae7d0ac1d9
Some checks failed
Deploy Development / deploy (push) Successful in 1m11s
Build Test / pytest-backend (push) Failing after 5s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 22s
test: stabilize Playwright smoke and issue-audit against dev
Fix nav selectors (Erfassen), shared auth via global-setup to avoid login rate limits, and desktop sidebar viewport handling.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-25 16:37:36 +02:00

16 lines
381 B
JavaScript

module.exports = {
testDir: './tests',
timeout: 30000,
workers: 1,
globalSetup: require.resolve('./tests/global-setup.js'),
use: {
channel: 'chrome',
headless: true,
viewport: { width: 390, height: 844 },
screenshot: 'only-on-failure',
baseURL: 'https://dev.mitai.jinkendo.de',
storageState: './tests/.auth/user.json',
},
reporter: 'list',
};