ConceptCreator/e2e/playwright.config.ts
2024-01-26 23:07:40 +01:00

21 lines
446 B
TypeScript

/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
testDir: '.',
timeout: 45000,
outputDir: './screenshots',
use: {
headless: false,
viewport: { width: 1280, height: 720 },
launchOptions: {
slowMo: 1000,
},
trace: 'on',
},
expect: {
toMatchSnapshot: { threshold: 0.2 },
},
};
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
module.exports = config;