Skip to content

Commit

Permalink
dealing with failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Muta-Jonathan committed Dec 18, 2024
1 parent a5b4e0f commit 576e0fe
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions e2e/specs/dispensing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ test('Navigate to the dispensing page', async ({ page }) => {
});

await test.step('Then I should see the active prescriptions tab', async () => {
await expect(
dispensingPage.page.getByRole('tab', {
name: /active prescriptions/i,
}),
).toBeVisible();
await expect(page.getByRole('tab', { name: /active prescriptions/i })).toBeVisible();
});
});

0 comments on commit 576e0fe

Please sign in to comment.