cal.pub0.org/jest.playwright.config.js

34 lines
929 B
JavaScript
Raw Normal View History

const opts = {
// launch headless on CI, in browser locally
headless: !!process.env.CI || !!process.env.PLAYWRIGHT_HEADLESS,
collectCoverage: !!process.env.PLAYWRIGHT_HEADLESS,
executablePath: process.env.PLAYWRIGHT_CHROME_EXECUTABLE_PATH,
};
console.log("⚙️ Playwright options:", JSON.stringify(opts, null, 4));
2021-10-07 15:07:57 +00:00
module.exports = {
verbose: true,
preset: "jest-playwright-preset",
transform: {
"^.+\\.ts$": "ts-jest",
},
testMatch: ["<rootDir>/playwright/**/*(*.)@(spec|test).[jt]s?(x)"],
2021-10-07 15:07:57 +00:00
testEnvironmentOptions: {
"jest-playwright": {
browsers: ["chromium" /*, 'firefox', 'webkit'*/],
exitOnPageError: false,
launchOptions: {
headless: opts.headless,
executablePath: opts.executablePath,
2021-10-07 15:07:57 +00:00
},
contextOptions: {
recordVideo: {
dir: "playwright/videos",
2021-10-07 15:07:57 +00:00
},
},
collectCoverage: opts.collectCoverage,
2021-10-07 15:07:57 +00:00
},
},
};