Skip to content

Commit

Permalink
Chore: Don't await browser.close
Browse files Browse the repository at this point in the history
  • Loading branch information
antross committed Jun 16, 2022
1 parent 24cab18 commit faf6a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/connector-puppeteer/src/lib/lifecycle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export const close = async (browser: puppeteer.Browser, page: puppeteer.Page, op
if (options && options.detached) {
await deleteBrowserInfo();
}
await browser.close();
void browser.close();
} else {
await page.close();
}
Expand Down

0 comments on commit faf6a78

Please sign in to comment.