File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed
Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ describe('Companies', () => {
5757 assert . notEqual ( response , undefined ) ;
5858 } ) ;
5959 // TO-DO: Create issue on API. Doesn't work on API..
60- // it ('find - by name', async () => {
61- // const response = await client.companies.find({
62- // name: 'BestCompanyInc',
63- // });
60+ it . skip ( 'find - by name' , async ( ) => {
61+ const response = await client . companies . find ( {
62+ name : 'BestCompanyInc' ,
63+ } ) ;
6464
65- // assert.notEqual(response, undefined);
66- // });
65+ assert . notEqual ( response , undefined ) ;
66+ } ) ;
6767 it ( 'list' , async ( ) => {
6868 const response = await client . companies . list ( {
6969 page : 1 ,
Original file line number Diff line number Diff line change @@ -69,14 +69,14 @@ describe('Conversations', () => {
6969 assert . notEqual ( response , undefined ) ;
7070 } ) ;
7171 // TO-DO: Fix on API side.
72- // it ('replyToLastConversationAsAdmin', async () => {
73- // const response = await client.conversations.replyByLastAsAdmin({
74- // adminId,
75- // messageType: ReplyToConversationMessageType.COMMENT,
76- // body: 'test',
77- // });
78- // assert.notEqual(response, undefined);
79- // });
72+ it . skip ( 'replyToLastConversationAsAdmin' , async ( ) => {
73+ const response = await client . conversations . replyByLastAsAdmin ( {
74+ adminId,
75+ messageType : ReplyToConversationMessageType . COMMENT ,
76+ body : 'test' ,
77+ } ) ;
78+ assert . notEqual ( response , undefined ) ;
79+ } ) ;
8080 it ( 'replyByIdAsAdmin' , async ( ) => {
8181 const response = await client . conversations . replyByIdAsAdmin ( {
8282 id : foundConversation . id ,
You can’t perform that action at this time.
0 commit comments