We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b686553 commit beded60Copy full SHA for beded60
test/e2e/models/CodeServer.ts
@@ -224,8 +224,8 @@ export class CodeServerPage {
224
const to = new URL(endpoint, await this.codeServer.address())
225
await this.page.goto(to.toString(), { waitUntil: "networkidle" })
226
227
- // If we aren't authenticated we'll see a login page so we can't wait until
228
- // the editor is ready.
+ // Only reload editor if authenticated. Otherwise we'll get stuck
+ // reloading the login page.
229
if (this.authenticated) {
230
await this.reloadUntilEditorIsReady()
231
}
0 commit comments