Skip to content

Commit

Permalink
remove default 200 status
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-codecov committed Sep 19, 2024
1 parent ddb41ad commit 2a8ad09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/LoginLayout/LoginLayout.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('LoginLayout', () => {
function setup() {
server.use(
graphql.query('CurrentUser', (info) => {
return HttpResponse.json({ data: { me: null } }, { status: 200 })
return HttpResponse.json({ data: { me: null } })
})
)
mocks.useLocation.mockReturnValue({ search: [] })
Expand Down

0 comments on commit 2a8ad09

Please sign in to comment.