From 141aebb871965dee94ca9759f16d7a3a05c0c694 Mon Sep 17 00:00:00 2001 From: DarrellRoberts Date: Tue, 12 May 2026 11:11:21 +0200 Subject: [PATCH 1/2] fixes e2e tests --- e2e/homepage.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/homepage.spec.ts b/e2e/homepage.spec.ts index cc4bf32..19b98e7 100644 --- a/e2e/homepage.spec.ts +++ b/e2e/homepage.spec.ts @@ -1,7 +1,7 @@ import { test, expect } from "@playwright/test" test("book circle link mounts on homepage", async ({ page }) => { - await page.goto("http://localhost:3000/") + await page.goto("https://bookclub-brothers.vercel.app/") const bookCircleLink = page.getByTestId("book-egg-link") @@ -11,7 +11,7 @@ test("book circle link mounts on homepage", async ({ page }) => { }) test("club circle link mounts on homepage", async ({ page }) => { - await page.goto("http://localhost:3000/") + await page.goto("https://bookclub-brothers.vercel.app/") const clubCircleLink = page.getByTestId("club-egg-link") @@ -21,7 +21,7 @@ test("club circle link mounts on homepage", async ({ page }) => { }) test("brother circle link mounts on homepage", async ({ page }) => { - await page.goto("http://localhost:3000/") + await page.goto("https://bookclub-brothers.vercel.app/") const brotherCircleLink = page.getByTestId("brothers-egg-link") From 96c05aa9030cce0c2325a92d45651dd66995b938 Mon Sep 17 00:00:00 2001 From: DarrellRoberts Date: Tue, 12 May 2026 11:14:27 +0200 Subject: [PATCH 2/2] switches testing urls --- e2e/homepage.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/homepage.spec.ts b/e2e/homepage.spec.ts index 19b98e7..7c079ed 100644 --- a/e2e/homepage.spec.ts +++ b/e2e/homepage.spec.ts @@ -1,7 +1,7 @@ import { test, expect } from "@playwright/test" test("book circle link mounts on homepage", async ({ page }) => { - await page.goto("https://bookclub-brothers.vercel.app/") + await page.goto("https://intbook-club-brothers.vercel.app/") const bookCircleLink = page.getByTestId("book-egg-link") @@ -11,7 +11,7 @@ test("book circle link mounts on homepage", async ({ page }) => { }) test("club circle link mounts on homepage", async ({ page }) => { - await page.goto("https://bookclub-brothers.vercel.app/") + await page.goto("https://intbook-club-brothers.vercel.app/") const clubCircleLink = page.getByTestId("club-egg-link") @@ -21,7 +21,7 @@ test("club circle link mounts on homepage", async ({ page }) => { }) test("brother circle link mounts on homepage", async ({ page }) => { - await page.goto("https://bookclub-brothers.vercel.app/") + await page.goto("https://intbook-club-brothers.vercel.app/") const brotherCircleLink = page.getByTestId("brothers-egg-link")