Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ann-kilzer committed Jul 4, 2024
1 parent 0114b2e commit 5142c8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header/__test__/DesktopToolbar.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ describe('Header', () => {

it('should show navigation links', async () => {
render(<DesktopHeader />)
const team = await screen.findByText('TEAM')
const team = await screen.findByText('Team')
expect(team).toBeVisible()
const codeOfConduct = await screen.findByText('CODE OF CONDUCT')
const codeOfConduct = await screen.findByText('Code of Conduct')
expect(codeOfConduct).toBeVisible()
})
})

0 comments on commit 5142c8f

Please sign in to comment.