Skip to content

Commit

Permalink
Modifies NavBarTest
Browse files Browse the repository at this point in the history
  • Loading branch information
uo287841 committed Apr 24, 2024
1 parent e917ff2 commit f36aae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/Navbar.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('Navbar', () => {
expect(getByText('Play')).toBeInTheDocument();
expect(getByText('Rankings')).toBeInTheDocument();
expect(getByText('UserProfile')).toBeInTheDocument();
expect(getByText('Logout')).toBeInTheDocument();
expect(getByText('Log out')).toBeInTheDocument();
});

it('renders unauthenticated user links and sign-in link', () => {
Expand All @@ -41,7 +41,7 @@ describe('Navbar', () => {
expect(getByText('WIQ')).toBeInTheDocument();
expect(getByText('Play')).toBeInTheDocument();
expect(getByText('Rankings')).toBeInTheDocument();
expect(getByText('Sign in')).toBeInTheDocument();
expect(getByText('Log In')).toBeInTheDocument();
});

});

0 comments on commit f36aae0

Please sign in to comment.