Skip to content

Commit

Permalink
Debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Sep 17, 2024
1 parent cad4a41 commit ac2c337
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/work.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@ 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 workPage.goto();
await use(workPage);
},
});

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

return;
Expand Down

0 comments on commit ac2c337

Please sign in to comment.