Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
parsers: determineParsers(opts && opts.parsers)
};
/**
* Defaults needed to run the tests. All apply only to
* `puppeteer` except `ignoreHTTPSErrors` that's common
* to all.
*/
config.connector.options = {
detached: true,
ignoreHTTPSErrors: true,
puppeteerOptions: { timeout: 60000 },
waitUntil: 'networkidle0'
};
return Configuration.fromConfig(config);
};