We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d818614 commit 2bce4e1Copy full SHA for 2bce4e1
src/components/Thread/__tests__/Thread.test.js
@@ -330,12 +330,6 @@ describe('Thread', () => {
330
expect(channelActionContextMock.loadMoreThread).toHaveBeenCalledTimes(1);
331
});
332
333
- it('should not call the loadMoreThread callback on mount if the thread start has a non-zero reply count but threadInstance is provided', () => {
334
- renderComponent({ channelStateOverrides: { threadInstance: {} }, chatClient });
335
-
336
- expect(channelActionContextMock.loadMoreThread).not.toHaveBeenCalled();
337
- });
338
339
it('should render null if replies is disabled', async () => {
340
const client = await getTestClientWithUser();
341
const ch = generateChannel({ getConfig: () => ({ replies: false }) });
0 commit comments