Skip to content
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 e2e/homepage.spec.ts
Original file line number Diff line number Diff line change
@@ -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://intbook-club-brothers.vercel.app/")

const bookCircleLink = page.getByTestId("book-egg-link")

Expand All @@ -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://intbook-club-brothers.vercel.app/")

const clubCircleLink = page.getByTestId("club-egg-link")

Expand All @@ -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://intbook-club-brothers.vercel.app/")

const brotherCircleLink = page.getByTestId("brothers-egg-link")

Expand Down
Loading