Skip to content

Commit 507336c

Browse files
chore: lint fix
1 parent a2b4f80 commit 507336c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

__tests__/rntl/components/AppSheet.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ describe('AppSheet', () => {
289289
mockAddListener = jest.spyOn(Keyboard, 'addListener').mockReturnValue({
290290
remove: mockRemove,
291291
} as any);
292-
mockDismiss = jest.spyOn(Keyboard, 'dismiss').mockImplementation(() => {});
292+
mockDismiss = jest.spyOn(Keyboard, 'dismiss').mockImplementation(() => { });
293293
mockIsVisible = jest.spyOn(Keyboard, 'isVisible' as any);
294294
});
295295

@@ -331,7 +331,7 @@ describe('AppSheet', () => {
331331
expect(toJSON()).toBeNull();
332332

333333
// Now set visible — keyboard is open
334-
const { rerender, toJSON: toJSON2 } = render(
334+
render(
335335
<AppSheet visible={true} onClose={jest.fn()} title="Sheet">
336336
<Text>Content</Text>
337337
</AppSheet>
@@ -352,7 +352,7 @@ describe('AppSheet', () => {
352352
return { remove: mockRemove };
353353
});
354354

355-
const { rerender, getByText, queryByText } = render(
355+
const { rerender, getByText } = render(
356356
<AppSheet visible={false} onClose={jest.fn()} title="Sheet">
357357
<Text>Content</Text>
358358
</AppSheet>

0 commit comments

Comments
 (0)