jest-puppeteer.config.js 241 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4 5 6 7 8
// ps https://github.com/GoogleChrome/puppeteer/issues/3120
module.exports = {
  launch: {
    args: [
      '--disable-gpu',
      '--disable-dev-shm-usage',
      '--no-first-run',
      '--no-zygote',
9
      '--no-sandbox',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
10 11 12
    ],
  },
};