mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-11 20:32:27 +03:00
18 lines
435 B
JavaScript
18 lines
435 B
JavaScript
const path = require('path');
|
|
|
|
const deploymentConfig = path.resolve(__dirname, './config/jest-puppeteer.rollup.config.js');
|
|
const testServerPath = path.resolve(__dirname, './config/jest-test-server.js');
|
|
|
|
module.exports = {
|
|
browser: 'chromium',
|
|
browserContext: 'incognito',
|
|
launch: {
|
|
headless: false,
|
|
},
|
|
server: {
|
|
command: `node ${testServerPath}`,
|
|
port: deploymentConfig.port,
|
|
launchTimeout: 10000,
|
|
},
|
|
};
|