项目文件夹

文件
Nikolay Vitkov 04deff21a4 test: add Puppeteer config (#479)
Effectively this means we won't download chrome-headless-shell by
default
2025-10-27 12:41:04 +00:00

21 行
309 B
JavaScript

/**
* @license
* Copyright 2025 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
chrome: {
skipDownload: false,
},
['chrome-headless-shell']: {
skipDownload: true,
},
firefox: {
skipDownload: true,
},
};