Live handles for the three resources allocated at the start of a test run. Passed through the run pipeline and closed together on shutdown.
// Defined, not invoked: the run pipeline allocates all three together at run start. async function teardown({ page, browser, server }: Connections) { await page.close(); await browser.close(); await server.close(); }