jest-puppeteer.config.js 241B

123456789101112
  1. // ps https://github.com/GoogleChrome/puppeteer/issues/3120
  2. module.exports = {
  3. launch: {
  4. args: [
  5. '--disable-gpu',
  6. '--disable-dev-shm-usage',
  7. '--no-first-run',
  8. '--no-zygote',
  9. '--no-sandbox',
  10. ],
  11. },
  12. };