Skip to content

Commit

Permalink
update useMutation test to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
brainkim committed Nov 10, 2021
1 parent 461cfdb commit 88ec2f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/hooks/__tests__/useMutation.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ describe('useMutation Hook', () => {
];

const { result, waitForNextUpdate } = renderHook(
() => useMutation(CREATE_TODO_MUTATION),
() => useMutation(CREATE_TODO_MUTATION, {}),
{ wrapper: ({ children }) => (
<MockedProvider mocks={mocks}>
{children}
Expand Down

0 comments on commit 88ec2f6

Please sign in to comment.