mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-05 16:00:01 +01:00
* add xvfb to gitpod dockerfile to run jest tests in gitpod * Update .gitpod.dockerfile * jest running in gitpod, some timeouts
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
module.exports = {
|
|
launch: {
|
|
args: ['--no-sandbox', '--disable-setuid-sandbox'], // https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#setting-up-chrome-linux-sandbox
|
|
headless: process.env.HEADLESS !== 'false',
|
|
},
|
|
server: {
|
|
command: 'grunt serve',
|
|
port:3000,
|
|
launchTimeout: 5000000,
|
|
},
|
|
|
|
}; |