Skip to content

Commit

Permalink
fixes syntax for removing feedback card in defualt layout test
Browse files Browse the repository at this point in the history
  • Loading branch information
shkeating committed Dec 20, 2023
1 parent f654620 commit 21d4b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/DefaultLayout/DefaultLayout.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('DefaultLayout component', () => {
describe('withDefaultLayout HOC', () => {
it('renders children inside of the default layout', async () => {
const TestPage = () => <div>My page</div>
renderWithAuthAndApollo(withDefaultLayout(<TestPage />), getUserMock)
renderWithAuthAndApollo(withDefaultLayout(<TestPage />), {}, getUserMock)
await waitFor(() => {
expect(screen.getByText('My page')).toBeInTheDocument()
})
Expand Down

0 comments on commit 21d4b97

Please sign in to comment.