Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Feb 20, 2022
1 parent edfb21f commit d9a2b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/__tests__/Sidebar.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ describe('Sidebar', () => {
window.history.replaceState({}, 'Front Recordings', '/recording/front');
render(<Sidebar />);
expect(screen.queryByRole('link', { name: 'front' })).toBeInTheDocument();
expect(screen.queryByRole('link', { name: 'side' })).not.toBeInTheDocument();
expect(screen.queryByRole('link', { name: 'side' })).toBeInTheDocument();
});
});

0 comments on commit d9a2b6e

Please sign in to comment.