mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import accountAPI from '../account';
|
|
import ApiClient from '../ApiClient';
|
|
|
|
describe('#accountAPI', () => {
|
|
it('creates correct instance', () => {
|
|
expect(accountAPI).toBeInstanceOf(ApiClient);
|
|
expect(accountAPI).toHaveProperty('get');
|
|
expect(accountAPI).toHaveProperty('show');
|
|
expect(accountAPI).toHaveProperty('create');
|
|
expect(accountAPI).toHaveProperty('update');
|
|
expect(accountAPI).toHaveProperty('delete');
|
|
expect(accountAPI).toHaveProperty('createAccount');
|
|
});
|
|
|
|
describe('API calls', () => {
|
|
const originalAxios = window.axios;
|
|
const axiosMock = {
|
|
post: jest.fn(() => Promise.resolve()),
|
|
get: jest.fn(() => Promise.resolve()),
|
|
patch: jest.fn(() => Promise.resolve()),
|
|
delete: jest.fn(() => Promise.resolve()),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
window.axios = axiosMock;
|
|
});
|
|
|
|
afterEach(() => {
|
|
window.axios = originalAxios;
|
|
});
|
|
|
|
it('#createAccount', () => {
|
|
accountAPI.createAccount({
|
|
name: 'Chatwoot',
|
|
});
|
|
expect(axiosMock.post).toHaveBeenCalledWith('/api/v1/accounts', {
|
|
name: 'Chatwoot',
|
|
});
|
|
});
|
|
});
|
|
});
|