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 8b53362 commit 4f3d30dCopy full SHA for 4f3d30d
test/e2e/extensions.test.ts
@@ -8,8 +8,12 @@ function runTestExtensionTests() {
8
test("should have access to VSCODE_PROXY_URI", async ({ codeServerPage }) => {
9
const address = await getMaybeProxiedCodeServer(codeServerPage)
10
11
+ // TODO@jsjoeio - reload page inside executeCommandViaMenus
12
await codeServerPage.executeCommandViaMenus("code-server: Get proxy URI")
13
14
+ await codeServerPage.page.waitForSelector(".notification-list-item-message", {
15
+ timeout: 3000
16
+ })
17
const text = await codeServerPage.page.locator(".notification-list-item-message").textContent()
18
// Remove end slash in address
19
const normalizedAddress = address.replace(/\/+$/, "")
0 commit comments