diff --git a/lib/utils/puppeteer.ts b/lib/utils/puppeteer.ts index 2c0753c3bdb8a5..24c36163244490 100644 --- a/lib/utils/puppeteer.ts +++ b/lib/utils/puppeteer.ts @@ -54,12 +54,9 @@ const outPuppeteer = async ( } : options )); - setTimeout( - () => { - browser.close(); - }, - 5 * 60 * 1000 - ); + setTimeout(() => { + browser.close(); + }, 30000); return browser; };