digitransit-ui/test/e2e/jest-playwright-desktop.config.js
2021-11-18 12:05:14 +02:00

22 lines
468 B
JavaScript

module.exports = {
serverOptions: {
command: `CONFIG=${
process.env.CONFIG || 'hsl'
} NODE_OPTS=--max_old_space_size=1000 yarn start-test`,
port: 8080,
protocol: 'http',
launchTimeout: 200000,
debug: true,
usedPortAction: 'ignore',
},
launchOptions: {
headless: !process.env.DEBUG,
},
contextOptions: {
viewport: {
width: 1920,
height: 1080,
},
},
browsers: ['chromium', 'firefox', 'webkit'],
};