Skip to content

Commit

Permalink
try ignore-gpu-blocklist
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jul 2, 2024
1 parent ef32a14 commit 91d4ea7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ function makePromiseInfo() {
}

async function test(port) {
const browser = await puppeteer.launch();
const browser = await puppeteer.launch({
args: [
'--ignore-gpu-blocklist',
],
});
const page = await browser.newPage();

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

0 comments on commit 91d4ea7

Please sign in to comment.