Skip to content

Commit f6e8371

Browse files
Update src/__tests__/renderHook.test.tsx
1 parent da2e542 commit f6e8371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/renderHook.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ test('props type is infered correctly when initial props is defined', () => {
8080
expect(result.current).toBe(6);
8181
});
8282

83-
test('props type is infered correctly when initial props is explicitly undefined', () => {
83+
test('props type is inferred correctly when initial props is explicitly undefined', () => {
8484
const { result, rerender } = renderHook(
8585
(num: number | undefined) => useMyHook(num),
8686
{

0 commit comments

Comments
 (0)