penpotqa/playwright.config.js

98 lines
2.5 KiB
JavaScript
Raw 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-02 10:58:48 +00:00
snapshotPathTemplate: `{testDir}/{testFileDir}/{testFileName}-snapshots/darvin/{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();`
*/
timeout: 5000,
},
/* 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-02 00:41:17 +00:00
retries: process.env.CI ? 1 : 2,
/* Opt out of parallel tests on CI. */
2024-03-02 00:41:17 +00:00
workers: process.env.CI ? 4 : 3,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: '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
},
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,
},
},
},
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;