We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56756f8 + 3088195 commit 5a05faaCopy full SHA for 5a05faa
e2e/script.js
@@ -21,7 +21,7 @@ const BASE_URL = "http://127.0.0.1:8787";
21
22
// Check if the path is reachable
23
async function checkPath(page, path) {
24
- const res = await page.goto(`${BASE_URL}${path}`, { timeout: 60_000 });
+ const res = await page.goto(`${BASE_URL}${path}`, { timeout: 60_000, waitUntil: "networkidle" });
25
check(res, { [`GET ${path} → 200`]: (r) => r && r.status() === 200 });
26
}
27
0 commit comments