mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-15 11:32:27 +03:00
switch to playwright test runner, use esbuild for dev builds, switch to array destructuring
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
const { devices } = require('@playwright/test');
|
||||
|
||||
module.exports = {
|
||||
testMatch: /.*\/tests\/playwright\/.*\.test\.[jt]sx?/,
|
||||
timeout: 5 * 60 * 1000,
|
||||
actionTimeout: 300,
|
||||
navigationTimeout: 1000,
|
||||
retries: 0,
|
||||
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,
|
||||
},
|
||||
},
|
||||
*/
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user