Skip to content

Commit

Permalink
Return.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Sep 17, 2024
1 parent ac2c337 commit 29e3818
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/work.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ const test = base.extend<WorkPageFixtures>({
await openGraphPage.goto();
await use(openGraphPage);
},

// A fixture to help with the Search Page shared functionality
workPage: async ({ page }, use) => {
const workPage = new WorkPage(page);
await use(workPage);
},
});

test.describe("Work page component", async () => {{
test.describe("Work page component", async () => {
test.beforeEach(async ({ page }) => {
await page.goto(`/items/${CANARY_WORK_ID}`);
});
Expand Down

0 comments on commit 29e3818

Please sign in to comment.