Skip to content

Commit

Permalink
hack puppeteer
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Dec 21, 2024
1 parent eb7fe4e commit 63701ac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ function makePromiseInfo() {
}

async function test(port) {
const browser = await puppeteer.launch();
const browser = await puppeteer.launch({
args: [
'--no-sandbox',

Check failure on line 29 in test/puppeteer.js

View workflow job for this annotation

GitHub Actions / test

Trailing spaces not allowed
'--disable-setuid-sandbox',
],
});
const page = await browser.newPage();

page.on('console', async e => {
Expand Down

0 comments on commit 63701ac

Please sign in to comment.