Skip to content

Commit

Permalink
Timeout :(
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Sep 16, 2024
1 parent bda1079 commit a56edc8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/work.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const test = base.extend<WorkPageFixtures>({
// A fixture to help with the Search Page shared functionality
workPage: async ({ page }, use) => {
const workPage = new WorkPage(page);
await workPage.goto();
await use(workPage);
},
});
Expand All @@ -47,12 +48,12 @@ test.describe("Work page component", async () => {
// );
});

test("renders the Work top level metadata", async ({ page }) => {
test("renders the Work top level metadata", async ({ page, workPage }) => {
// const metadataEl = page.getByTestId("metadata");

// await expect(page.getByTestId("title")).toContainText(
// canaryWork.title || "",
// );
await expect(page.getByTestId("title")).toContainText(
canaryWork.title || "",
);

return;

Expand Down

0 comments on commit a56edc8

Please sign in to comment.