Skip to content

Commit c8c75f8

Browse files
committed
Do not wait for networkidle
I am not sure what is going on but some tests on Webkit are timing out and it seems the page is loaded but something is still trying to download. Not good either way, but for now trying to at least get the tests passing.
1 parent 09a9927 commit c8c75f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/models/CodeServer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export class CodeServerPage {
302302
const to = new URL(noramlizedUrl)
303303

304304
this.codeServer.logger.info(`navigating to ${to}`)
305-
await this.page.goto(to.toString(), { waitUntil: "networkidle" })
305+
await this.page.goto(to.toString())
306306

307307
// Only reload editor if auth is not enabled. Otherwise we'll get stuck
308308
// reloading the login page.

0 commit comments

Comments
 (0)