Skip to content
Snippets Groups Projects

Update all non-major dependencies

Merged Reiter, Christoph requested to merge renovate/all-minor-patch into master

Files

+ 1
1
module.exports = async function (config) {
const {installBrowsersForNpmInstall, registry} = require('playwright-core/lib/utils/registry');
const {installBrowsersForNpmInstall, registry} = require('playwright-core/lib/server');
await installBrowsersForNpmInstall(['firefox', 'chromium']);
process.env.FIREFOX_BIN = registry.findExecutable('firefox').executablePath();
process.env.CHROME_BIN = registry.findExecutable('chromium').executablePath();
Loading