mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-17 17:19:39 +03:00
36 lines
629 B
JavaScript
36 lines
629 B
JavaScript
const { devices } = require('@playwright/test');
|
|
|
|
module.exports = {
|
|
testMatch: /.*\/tests\/playwright\/.*\.test\.[jt]sx?/,
|
|
timeout: 5 * 60 * 1000,
|
|
actionTimeout: 300,
|
|
navigationTimeout: 1000,
|
|
retries: 0,
|
|
workers: 4,
|
|
projects: [
|
|
{
|
|
name: 'Chromium',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
headless: false,
|
|
},
|
|
},
|
|
/*
|
|
{
|
|
name: 'Firefox',
|
|
use: {
|
|
...devices['Desktop Firefox'],
|
|
headless: false,
|
|
},
|
|
},
|
|
{
|
|
name: 'Safari',
|
|
use: {
|
|
...devices['Desktop Safari'],
|
|
headless: false,
|
|
},
|
|
},
|
|
*/
|
|
],
|
|
};
|