Skip to content

Commit 9c1cf83

Browse files
committed
fixup! feat(react): add a handled prop to ErrorBoundary
1 parent b837937 commit 9c1cf83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react/test/errorboundary.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ describe('ErrorBoundary', () => {
537537
expect(mockOnReset).toHaveBeenCalledTimes(1);
538538
expect(mockOnReset).toHaveBeenCalledWith(expect.any(Error), expect.any(String), expect.any(String));
539539
});
540-
it.only.each`
540+
it.each`
541541
fallback | handled | expected
542542
${true} | ${undefined} | ${true}
543543
${false} | ${undefined} | ${false}

0 commit comments

Comments
 (0)