Skip to content

Commit

Permalink
update test copy
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Oct 16, 2024
1 parent 9b81807 commit c98f85b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ describe('EventNavigation', () => {
expect(screen.queryByText('Jump To:')).not.toBeInTheDocument();
expect(screen.queryByText('Replay')).not.toBeInTheDocument();
expect(screen.queryByText('Tags')).not.toBeInTheDocument();
expect(screen.queryByText('Event Highlights')).not.toBeInTheDocument();
expect(screen.queryByText('Highlights')).not.toBeInTheDocument();
});

it('does show jump to sections when the sections render', () => {
render(<EventNavigation {...defaultProps} />);
expect(screen.getByText('Jump to:')).toBeInTheDocument();
expect(screen.getByText('Event Highlights')).toBeInTheDocument();
expect(screen.getByText('Highlights')).toBeInTheDocument();
expect(screen.getByText('Replay')).toBeInTheDocument();
expect(screen.getByText('Tags')).toBeInTheDocument();
});
Expand Down

0 comments on commit c98f85b

Please sign in to comment.