Sword/jest-puppeteer.config.js
smallchill 53f8528b9e 🎉 1.0.0-RC2
2019-01-18 22:39:21 +08:00

15 lines
295 B
JavaScript

// ps https://github.com/GoogleChrome/puppeteer/issues/3120
module.exports = {
launch: {
headless: true,
args: [
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-setuid-sandbox',
'--no-first-run',
'--no-sandbox',
'--no-zygote',
],
},
};