bigbluebutton-Github/bigbluebutton-tests/playwright/playwright.config.js
2023-09-27 08:44:37 -03:00

44 lines
929 B
JavaScript

require('dotenv').config();
const { chromiumConfig, firefoxConfig, webkitConfig } = require('./core/browsersConfig');
const { ELEMENT_WAIT_TIME } = require('./core/constants');
const CI = process.env.CI === 'true';
const DEBUG_MODE = process.env.DEBUG_MODE === 'true';
const config = {
workers: CI ? 1 : 2,
timeout: 3 * 60 * 1000,
reporter: CI
? [['blob'], ['github']]
: [['list'], ['html', { open: 'never' }],
],
forbidOnly: CI,
fullyParallel: CI,
use: {
headless: true,
trace: DEBUG_MODE ? 'on'
: CI ? 'retain-on-failure'
: 'off',
screenshot: 'on',
video: 'on',
},
projects: [
chromiumConfig,
firefoxConfig,
webkitConfig,
],
expect: {
timeout: ELEMENT_WAIT_TIME,
toMatchSnapshot: {
maxDiffPixelRatio: 0.05,
},
toHaveScreenshot: {
maxDiffPixelRatio: 0.05,
},
},
};
if (CI) config.retries = 1;
module.exports = config;