Skip to content

Commit 448059b

Browse files
committed
fix e2e tests
1 parent 9863e2f commit 448059b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/home.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ test("index page renders", async ({ page }) => {
44
await page.goto("/");
55

66
// Intro bio
7-
const bio = await page.locator("text=Hey, I'm Andrew Healey");
7+
const bio = await page.locator("text=love getting email");
88
expect(await bio.isVisible()).toBe(true);
99

1010
// Bio image
11-
const bioImage = await page.locator('[alt="Andrew Healey."]');
11+
const bioImage = await page.locator('[alt="Presenting: When Does Development Spark Joy? Sentimental analysis of commit messages."]');
1212
expect(await bioImage.isVisible()).toBe(true);
1313
});

0 commit comments

Comments
 (0)