Skip to content

Commit f0afd03

Browse files
test: add Puppeteer config
1 parent 376f57c commit f0afd03

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

puppeteer.config.cjs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* @license
3+
* Copyright 2025 Google Inc.
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/**
8+
* @type {import("puppeteer").Configuration}
9+
*/
10+
module.exports = {
11+
chrome: {
12+
skipDownload: false,
13+
},
14+
['chrome-headless-shell']: {
15+
skipDownload: true,
16+
},
17+
firefox: {
18+
skipDownload: true,
19+
},
20+
};

0 commit comments

Comments
 (0)