ampproject / amp-toolbox

A collection of AMP tools making it easier to publish and host AMP pages.
Apache License 2.0
450 stars 242 forks source link

Fix test flakiness caused by Puppeteer state management #1361

Closed powerivq closed 3 months ago

powerivq commented 3 months ago

This PR fixes occasional test failures caused by Puppeteer page not properly closed before the next test runs. We fix it by awaiting page.close() (old logic is having it in try/finally). In the event of test failure, not closing would not be critical anyways, and calling close would not help much.