Skip to content

Commit

Permalink
fix the build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnasambu committed Dec 19, 2024
1 parent 0d17ab7 commit 0b138c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('DefaultQueueTable', () => {
await screen.findByRole('table');

expect(screen.queryByRole('progressbar')).not.toBeInTheDocument();
expect(screen.getByText(/patients currently in queue/i)).toBeInTheDocument();
expect(screen.getByText(/active visit/i)).toBeInTheDocument();
expect(screen.getByText(/no patients to display/i)).toBeInTheDocument();
});

Expand All @@ -100,7 +100,7 @@ describe('DefaultQueueTable', () => {

await screen.findByRole('table');

expect(screen.getByText(/patients currently in queue/i)).toBeInTheDocument();
expect(screen.getByText(/active visit/i)).toBeInTheDocument();
expect(screen.queryByText(/no patients to display/i)).not.toBeInTheDocument();
expect(screen.getByRole('link', { name: /Brian Johnson/i })).toBeInTheDocument();
const john = screen.getByRole('link', { name: /Alice Johnson/i });
Expand Down

0 comments on commit 0b138c9

Please sign in to comment.