You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
358 B
14 lines
358 B
1 year ago
|
// jest-puppeteer.config.js
|
||
|
module.exports = {
|
||
|
launch: {
|
||
|
args: [
|
||
|
// Required for Docker version of Puppeteer
|
||
|
'--no-sandbox',
|
||
|
'--disable-setuid-sandbox',
|
||
|
// This will write shared memory files into /tmp instead of /dev/shm,
|
||
|
// because Docker’s default for /dev/shm is 64MB
|
||
|
'--disable-dev-shm-usage',
|
||
|
],
|
||
|
},
|
||
|
};
|