Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ed3c4e7

Browse files
committedOct 17, 2024··
Wait for proxy URI
1 parent 39d29fc commit ed3c4e7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎test/e2e/extensions.test.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ function runTestExtensionTests() {
1111
await codeServerPage.waitForTestExtensionLoaded()
1212
await codeServerPage.executeCommandViaMenus("code-server: Get proxy URI")
1313

14-
await codeServerPage.page.waitForSelector("text=proxyUri", { timeout: 3000 })
15-
const text = await codeServerPage.page.locator("text=proxyUri").first().textContent()
16-
// Remove end slash in address
14+
// Remove end slash in address.
1715
const normalizedAddress = address.replace(/\/+$/, "")
18-
expect(text).toBe(`Info: proxyUri: ${normalizedAddress}/proxy/{{port}}/`)
16+
await codeServerPage.page.getByText(`Info: proxyUri: ${normalizedAddress}/proxy/{{port}}/`)
1917
})
2018
}
2119

0 commit comments

Comments
 (0)
Please sign in to comment.