penpotqa/playwright.config.js

125 lines
3.1 KiB
JavaScript
Raw Permalink Normal View History

/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
require('dotenv').config();
/**
* @see https://playwright.dev/docs/test-configuration
* @type {import('@playwright/test').PlaywrightTestConfig}
*/
const config = {
2024-03-03 11:08:01 +00:00
snapshotPathTemplate: `{testDir}/{testFileDir}/{testFileName}-snapshots/win32/{projectName}/{arg}{ext}`,
testDir: './tests',
/* Maximum time one test can run for. */
2024-03-01 23:31:59 +00:00
timeout: process.env.CI ? 60 * 1000 : 80 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
2024-03-08 18:58:42 +00:00
timeout: 10000,
2024-03-02 22:32:16 +00:00
toMatchSnapshot: {
maxDiffPixelRatio: 0.01,
},
2024-03-02 23:34:26 +00:00
maxDiffPixels: 30,
},
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
2024-03-26 11:01:38 +00:00
retries: process.env.CI ? 2 : 2,
/* Opt out of parallel tests on CI. */
2024-03-07 13:29:21 +00:00
workers: process.env.CI ? 3 : 3,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2024-05-13 14:44:25 +00:00
reporter: process.env.CI
? [
['html'],
['playwright-qase-reporter',
{
logging: true,
},
],
]
: [['html']],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
2024-03-02 09:36:32 +00:00
actionTimeout: 15 * 1000,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: process.env.BASE_URL,
headless: true,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
video: 'on',
},
2022-12-14 13:32:41 +00:00
projects: [
{
name: 'chrome',
2022-12-15 14:14:21 +00:00
expect: {
toHaveScreenshot: {
maxDiffPixelRatio: 0.01,
2022-12-15 14:14:21 +00:00
},
},
2022-12-14 13:32:41 +00:00
use: {
browserName: 'chromium',
channel: 'chrome',
2022-12-15 10:40:40 +00:00
viewport: {
height: 969,
width: 1920,
2022-12-14 13:32:41 +00:00
},
2022-12-15 14:14:21 +00:00
launchOptions: {
ignoreDefaultArgs: ['--hide-scrollbars'],
2022-12-15 14:14:21 +00:00
},
contextOptions: {
// chromium-specific permissions
permissions: ['clipboard-read', 'clipboard-write'],
},
2022-12-14 13:32:41 +00:00
},
},
{
name: 'firefox',
expect: {
toHaveScreenshot: {
maxDiffPixelRatio: 0.01,
},
},
2022-12-14 13:32:41 +00:00
use: {
browserName: 'firefox',
2022-12-14 13:32:41 +00:00
viewport: {
height: 969,
width: 1920,
},
},
launchOptions: {
firefoxUserPrefs: {
'dom.events.asyncClipboard.readText': true,
'dom.events.testing.asyncClipboard': true,
},
},
contextOptions: {
// chromium-specific permissions
permissions: ['clipboard-read', 'clipboard-write'],
},
2022-12-14 13:32:41 +00:00
},
2022-12-15 10:36:38 +00:00
{
name: 'webkit',
expect: {
toHaveScreenshot: {
maxDiffPixelRatio: 0.01,
},
},
2022-12-15 10:36:38 +00:00
use: {
browserName: 'webkit',
2022-12-15 10:36:38 +00:00
viewport: {
height: 969,
width: 1920,
},
},
},
2022-12-14 13:32:41 +00:00
],
};
module.exports = config;