We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a390ba3 commit 0d8f6c8Copy full SHA for 0d8f6c8
1 file changed
src/inbox/components/IterableInbox.test.tsx
@@ -548,7 +548,6 @@ describe('IterableInbox', () => {
548
).toBeTruthy();
549
});
550
551
- inbox.debug();
552
timingSpy.mockClear();
553
554
// Change the trigger
@@ -736,12 +735,12 @@ describe('IterableInbox', () => {
736
735
737
describe('Message List Item Layout', () => {
738
it('should use messageListItemLayout when provided', async () => {
739
- const messageListItemLayout = jest
740
- .fn()
741
- .mockReturnValue([
742
- <Text key="custom-layout" testID="custom-layout">Custom Layout</Text>,
743
- 200,
744
- ]);
+ const messageListItemLayout = jest.fn().mockReturnValue([
+ <Text key="custom-layout" testID="custom-layout">
+ Custom Layout
+ </Text>,
+ 200,
+ ]);
745
746
const component = render(
747
<IterableInbox
0 commit comments