2020-01-21 13:12:44 +00:00
|
|
|
import conversations from '../conversations';
|
|
|
|
import ApiClient from '../ApiClient';
|
|
|
|
|
|
|
|
describe('#ConversationApi', () => {
|
|
|
|
it('creates correct instance', () => {
|
|
|
|
expect(conversations).toBeInstanceOf(ApiClient);
|
|
|
|
expect(conversations).toHaveProperty('get');
|
|
|
|
expect(conversations).toHaveProperty('show');
|
|
|
|
expect(conversations).toHaveProperty('create');
|
|
|
|
expect(conversations).toHaveProperty('update');
|
|
|
|
expect(conversations).toHaveProperty('delete');
|
|
|
|
expect(conversations).toHaveProperty('getLabels');
|
2020-02-16 10:16:26 +00:00
|
|
|
expect(conversations).toHaveProperty('updateLabels');
|
2020-01-21 13:12:44 +00:00
|
|
|
});
|
|
|
|
});
|