Skip to content

Commit 9a64e96

Browse files
authored
Merge pull request #814 from dannon/fix-tests
Fix expected test title
2 parents c0af134 + 2d5f9da commit 9a64e96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/tests/e2e/basic.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from "@playwright/test";
22

33
test("Homepage loads correctly", async ({ page }) => {
44
await page.goto("/");
5-
await expect(page).toHaveTitle(/IWC/);
5+
await expect(page).toHaveTitle(/Intergalactic Workflow Commission/);
66
await expect(page.locator("body")).toContainText("Galaxy IWC - Workflow Library");
77
});
88

0 commit comments

Comments
 (0)