Skip to content

Commit ad6fc93

Browse files
VoloVolo
authored andcommitted
Add skipped tests
1 parent ffb9cf0 commit ad6fc93

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

test/integration/companies.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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,

test/integration/conversations.test.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)