Skip to content

Commit

Permalink
1 act error removed from DataTablesPane test
Browse files Browse the repository at this point in the history
  • Loading branch information
lyndsiWilliams committed Sep 9, 2022
1 parent 71459a6 commit 6e6ae3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ describe('DataTablesPane', () => {
localStorage.clear();
});

test('Rendering DataTablesPane correctly', () => {
test('Rendering DataTablesPane correctly', async () => {
const props = createDataTablesPaneProps(0);
render(<DataTablesPane {...props} />, { useRedux: true });
expect(screen.getByText('Results')).toBeVisible();
expect(await screen.findByText('Results')).toBeVisible();
expect(screen.getByText('Samples')).toBeVisible();
expect(screen.getByLabelText('Expand data panel')).toBeVisible();
});
Expand Down

0 comments on commit 6e6ae3d

Please sign in to comment.