@@ -206,6 +206,7 @@ describe('Channel', () => {
206206 it ( 'should render empty channel container if channel does not have cid' , async ( ) => {
207207 const { channel } = await initClient ( ) ;
208208 const childrenContent = 'Channel children' ;
209+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
209210 const { cid, ...channelWithoutCID } = channel ;
210211 const { asFragment } = render (
211212 < ChatProvider
@@ -1482,6 +1483,7 @@ describe('Channel', () => {
14821483 } ) ;
14831484 describe ( 'delete message' , ( ) => {
14841485 it ( 'should throw error instead of calling default client.deleteMessage() function' , async ( ) => {
1486+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
14851487 const { id, ...message } = generateMessage ( ) ;
14861488 const { channel, chatClient } = await initClient ( ) ;
14871489 const clientDeleteMessageSpy = jest . spyOn ( chatClient , 'deleteMessage' ) ;
@@ -1509,6 +1511,7 @@ describe('Channel', () => {
15091511 } ) ;
15101512
15111513 it ( 'should throw error instead of calling custom doDeleteMessageRequest function' , async ( ) => {
1514+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
15121515 const { id, ...message } = generateMessage ( ) ;
15131516 const { channel, chatClient } = await initClient ( ) ;
15141517 const clientDeleteMessageSpy = jest
0 commit comments