Sword/jest-puppeteer.config.js
smallchill 9401de3ca4 🎉 1.0.0-RC1.
2019-01-01 22:20:57 +08:00

16 lines
322 B
JavaScript

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