@@ -211,6 +211,7 @@ describe('Channel', () => {
211211 it ( 'should render empty channel container if channel does not have cid' , async ( ) => {
212212 const { channel } = await initClient ( ) ;
213213 const childrenContent = 'Channel children' ;
214+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
214215 const { cid, ...channelWithoutCID } = channel ;
215216 const { asFragment } = render (
216217 < ChatProvider
@@ -1545,6 +1546,7 @@ describe('Channel', () => {
15451546 } ) ;
15461547 describe ( 'delete message' , ( ) => {
15471548 it ( 'should throw error instead of calling default client.deleteMessage() function' , async ( ) => {
1549+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
15481550 const { id, ...message } = generateMessage ( ) ;
15491551 const { channel, chatClient } = await initClient ( ) ;
15501552 const clientDeleteMessageSpy = jest . spyOn ( chatClient , 'deleteMessage' ) ;
@@ -1574,6 +1576,7 @@ describe('Channel', () => {
15741576 } ) ;
15751577
15761578 it ( 'should throw error instead of calling custom doDeleteMessageRequest function' , async ( ) => {
1579+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
15771580 const { id, ...message } = generateMessage ( ) ;
15781581 const { channel, chatClient } = await initClient ( ) ;
15791582 const clientDeleteMessageSpy = jest
0 commit comments