Skip to content

Commit

Permalink
Merge pull request #609 from eclipse-thingweb/ege-fixtest-thingweb-ho…
Browse files Browse the repository at this point in the history
…mepage

Correct thingweb urls to redirected ones
  • Loading branch information
egekorkan authored Nov 13, 2024
2 parents 2fa7669 + 72f5529 commit f414c17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/web/tests/test.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ test.describe("Check all links", () => {
await page.locator(".logo").click()
const thingwebPage = await thingwebPromise
await expect(thingwebPage).toHaveTitle("Eclipse Thingweb")
await expect(thingwebPage).toHaveURL("https://www.thingweb.io")
await expect(thingwebPage).toHaveURL("https://thingweb.io/")
})

test("Check CLI link", async ({ page }) => {
Expand All @@ -124,7 +124,7 @@ test.describe("Check all links", () => {
await page.locator("#thingweb-link").click()
const thingwebPage = await thingwebPromise
await expect(thingwebPage).toHaveTitle("Eclipse Thingweb")
await expect(thingwebPage).toHaveURL("https://www.thingweb.io")
await expect(thingwebPage).toHaveURL("https://thingweb.io/")
})

test("Check Eclipse footer link", async ({ page }) => {
Expand Down Expand Up @@ -2024,4 +2024,4 @@ test.describe("Visualization view functionality", () => {
const expectedFilename = 'Tree-visualization.png'
expect(download.suggestedFilename()).toBe(expectedFilename)
})
})
})

0 comments on commit f414c17

Please sign in to comment.