🥝
puppeteer + Jest でtestが完了してもexitしなかったのでその対処
起きたこと
puppeteerを使うライブラリを開発している際に、jestを使ったtestで下記のエラー?warning?が出た。
Jest did not exit one second after the test run has completed.
This usually means that there are asynchronous operations that weren't stopped in your tests. Consider running Jest with `--detectOpenHandles` to troubleshoot this issue.
testは正常に完了していたので、原因特定に時間を少しかけてしまった。
原因 && 解決策
公式のドキュメントに答えを発見。
ドキュメントのGuidesの部分に丁寧にpuppeteerを使う際の注意事項が記載されている。
puppeteerでbrowserやpageをcloseしないとprocessが残ってしまい、上記エラーが出る模様。
解決策としては、await page.close();
やawait browser.close();
を忘れないようにすればOK.
参考にしたサイト
Discussion