Skip to content

Commit

Permalink
increase protocol timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
elalish committed Oct 17, 2024
1 parent 5b27009 commit a5f849a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/render-fidelity-tools/src/artifact-creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ export class ArtifactCreator {

if (this.browser == undefined) {
console.log(`🚀 Launching browser`);
this.browser = await puppeteer.launch({headless: quiet});
this.browser =
await puppeteer.launch({headless: quiet, protocolTimeout: 1000000});
this.pagePromise = this.browser.newPage();
}

Expand Down

0 comments on commit a5f849a

Please sign in to comment.