Skip to content

Commit ee850b5

Browse files
committed
Standardize on endpoint vs path
1 parent 2dad878 commit ee850b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/models/CodeServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ export class CodeServerPage {
205205
/**
206206
* Navigate to a code-server endpoint. By default go to the root.
207207
*/
208-
async navigate(path = "/") {
209-
const to = new URL(path, await this.codeServer.address())
208+
async navigate(endpoint = "/") {
209+
const to = new URL(endpoint, await this.codeServer.address())
210210
await this.page.goto(to.toString(), { waitUntil: "networkidle" })
211211
}
212212

0 commit comments

Comments
 (0)