Archived
1
0

wip: update test

This commit is contained in:
Joe Previte 2022-12-21 12:53:36 -07:00
parent cbf00ae7aa
commit e8ef8bf8ef
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -15,7 +15,17 @@ describe("VS Code Routes", ["--disable-workspace-trust"], {}, async () => {
// Check there were no redirections // Check there were no redirections
const url = new URL(codeServerPage.page.url()) const url = new URL(codeServerPage.page.url())
expect(url.pathname).toBe(route) let expected = route
if (process.env.USE_PROXY === "1") {
// TODO@jsjoeio if running behind proxy
// we need to modify expected value
// instead of / it should be /<port>/ide
expected = "something else "
// could also modify left side and stripe /<port>/ide...
// in url.pathname
}
expect(url.pathname).toBe(expected)
// TODO@jsjoeio // TODO@jsjoeio
// now that we are in a proper browser instead of scraping the HTML we // now that we are in a proper browser instead of scraping the HTML we