Skip to content

Commit

Permalink
fix: remove www prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
egekorkan authored Nov 13, 2024
1 parent b4203a4 commit 72f5529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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

0 comments on commit 72f5529

Please sign in to comment.