mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-17 06:29:40 +03:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
const path = require('path');
|
|
|
|
const deploymentConfig = path.resolve(__dirname, './config/jest-browser.rollup.config.js');
|
|
const testServerPath = path.resolve(__dirname, './config/jest-test-server.js');
|
|
|
|
module.exports = {
|
|
browsers: ['chromium', 'firefox'],
|
|
collectCoverage: true,
|
|
launchType: 'LAUNCH',
|
|
launchOptions: {
|
|
headless: false,
|
|
},
|
|
serverOptions: {
|
|
command: `node ${testServerPath}`,
|
|
port: deploymentConfig.port,
|
|
launchTimeout: 10000,
|
|
},
|
|
};
|