mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-19 10:20:36 +03:00
15 lines
347 B
JavaScript
15 lines
347 B
JavaScript
const { TEST_SERVER_PORT } = process.env;
|
|
const port = TEST_SERVER_PORT ? Number(TEST_SERVER_PORT) : 8080;
|
|
|
|
process.env.TEST_SERVER_PORT = port;
|
|
|
|
module.exports = {
|
|
browser: 'chromium',
|
|
browserContext: 'incognito',
|
|
server: {
|
|
command: `cross-env TEST_SERVER_PORT=${port} node jest-test-server`,
|
|
port,
|
|
launchTimeout: 4000,
|
|
},
|
|
};
|