Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the Eclipse links for the Playwright tests #594

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/web/tests/test.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ test.describe("Check all links", () => {
await page.locator("#privacy-link").click()
const privacyPage = await privacyPromise
await expect(privacyPage).toHaveTitle("Eclipse Foundation Website Privacy Policy | The Eclipse Foundation")
await expect(privacyPage).toHaveURL("https://www.eclipse.org/legal/privacy.php")
await expect(privacyPage).toHaveURL("https://www.eclipse.org/legal/privacy/")
})

test("Check terms of use footer link", async ({ page }) => {
Expand All @@ -151,7 +151,7 @@ test.describe("Check all links", () => {
await page.locator("#terms-link").click()
const termsPage = await termsPromise
await expect(termsPage).toHaveTitle("Eclipse.org Terms of Use | The Eclipse Foundation")
await expect(termsPage).toHaveURL("https://www.eclipse.org/legal/termsofuse.php")
await expect(termsPage).toHaveURL("https://www.eclipse.org/legal/terms-of-use/")
})

test("Check copyright agent footer link", async ({ page }) => {
Expand All @@ -160,7 +160,7 @@ test.describe("Check all links", () => {
await page.locator("#copyright-link").click()
const copyrightPage = await copyrightPromise
await expect(copyrightPage).toHaveTitle("Copyright Agent | The Eclipse Foundation")
await expect(copyrightPage).toHaveURL("https://www.eclipse.org/legal/copyright.php")
await expect(copyrightPage).toHaveURL("https://www.eclipse.org/legal/copyright/")
})

test("Check legal footer link", async ({ page }) => {
Expand Down
Loading