Skip to content

Commit

Permalink
fixup! feat(react): add a handled prop to ErrorBoundary
Browse files Browse the repository at this point in the history
  • Loading branch information
HHK1 committed Dec 4, 2024
1 parent b837937 commit 9c1cf83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/test/errorboundary.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ describe('ErrorBoundary', () => {
expect(mockOnReset).toHaveBeenCalledTimes(1);
expect(mockOnReset).toHaveBeenCalledWith(expect.any(Error), expect.any(String), expect.any(String));
});
it.only.each`
it.each`
fallback | handled | expected
${true} | ${undefined} | ${true}
${false} | ${undefined} | ${false}
Expand Down

0 comments on commit 9c1cf83

Please sign in to comment.