jest-puppeteer.config.js 219 B

1234567891011
  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. ],
  10. },
  11. };