replace Spectron by Playwright
This commit is contained in:
19
e2e/playwright.config.ts
Normal file
19
e2e/playwright.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/** @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 },
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
Reference in New Issue
Block a user