mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-26 07:34:06 +03:00
38 lines
671 B
JavaScript
38 lines
671 B
JavaScript
const { devices } = require('@playwright/test');
|
|
|
|
module.exports = {
|
|
testMatch: /.*\/tests\/playwright\/.*\.test\.[jt]sx?/,
|
|
timeout: 10 * 60 * 1500,
|
|
navigationTimeout: 1000,
|
|
retries: 0,
|
|
maxFailures: 0,
|
|
workers: 4,
|
|
fullyParallel: true,
|
|
reporter: 'list',
|
|
projects: [
|
|
{
|
|
name: 'Chromium',
|
|
use: {
|
|
...devices['Desktop Chromium'],
|
|
headless: false,
|
|
},
|
|
},
|
|
/*
|
|
{
|
|
name: 'Firefox',
|
|
use: {
|
|
...devices['Desktop Firefox'],
|
|
headless: false,
|
|
},
|
|
},
|
|
{
|
|
name: 'Safari',
|
|
use: {
|
|
...devices['Desktop Safari'],
|
|
headless: false,
|
|
},
|
|
},
|
|
*/
|
|
],
|
|
};
|