Skip to content

Commit

Permalink
Update help page title on nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyhgrant committed Aug 3, 2023
1 parent 7d361fd commit e26e5ed
Show file tree
Hide file tree
Showing 3 changed files with 400 additions and 1 deletion.
14 changes: 14 additions & 0 deletions browser/src/NavBar.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { expect, test } from '@jest/globals'
import 'jest-styled-components'

import React from 'react'
import renderer from 'react-test-renderer'

import NavBar from './NavBar'

import { withDummyRouter } from '../../tests/__helpers__/router'

test('NavBar has no unexpected changes', () => {
const tree = renderer.create(withDummyRouter(<NavBar />))
expect(tree).toMatchSnapshot()
})
2 changes: 1 addition & 1 deletion browser/src/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const NavBar = () => {
</li>
<li>
<Link to="/help" onClick={closeMenu}>
Help
Help/FAQ
</Link>
</li>
</Menu>
Expand Down
Loading

0 comments on commit e26e5ed

Please sign in to comment.