Skip to content

Commit

Permalink
removed skip and adjusted e2e
Browse files Browse the repository at this point in the history
Jira ticket: CAMS-515
  • Loading branch information
amorrow-flexion committed Feb 11, 2025
1 parent 28ef745 commit 52df41f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/e2e/playwright/consolidation-orders.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ test.describe('Consolidation Orders', () => {
timeout: 30000,
});
await expect(page.getByTestId('header-data-verification-link')).toBeVisible();
await page.getByTestId('header-data-verification-link').click();
// await page.getByTestId('header-data-verification-link').click();
await page.goto('/data-verification');
await expect(page.getByTestId('accordion-group')).toBeVisible();

await officesRequestPromise;
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/playwright/transfer-orders.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ test.describe('Transfer Orders', () => {
predicate: (e) => e.url().includes('api/courts'),
});
await expect(page.getByTestId('header-data-verification-link')).toBeVisible();
await page.getByTestId('header-data-verification-link').click();
await page.goto('/data-verification');
// await page.getByTestId('header-data-verification-link').click();
await expect(page.getByTestId('accordion-group')).toBeVisible();

const orderResponse = await orderResponsePromise;
Expand Down

0 comments on commit 52df41f

Please sign in to comment.