We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dad878 commit ee850b5Copy full SHA for ee850b5
test/e2e/models/CodeServer.ts
@@ -205,8 +205,8 @@ export class CodeServerPage {
205
/**
206
* Navigate to a code-server endpoint. By default go to the root.
207
*/
208
- async navigate(path = "/") {
209
- const to = new URL(path, await this.codeServer.address())
+ async navigate(endpoint = "/") {
+ const to = new URL(endpoint, await this.codeServer.address())
210
await this.page.goto(to.toString(), { waitUntil: "networkidle" })
211
}
212
0 commit comments