23 lines
653 B
JavaScript
23 lines
653 B
JavaScript
import accountActionsAPI from '../accountActions';
|
|
import ApiClient from '../ApiClient';
|
|
import describeWithAPIMock from './apiSpecHelper';
|
|
|
|
describe('#ContactsAPI', () => {
|
|
it('creates correct instance', () => {
|
|
expect(accountActionsAPI).toBeInstanceOf(ApiClient);
|
|
expect(accountActionsAPI).toHaveProperty('merge');
|
|
});
|
|
|
|
describeWithAPIMock('API calls', context => {
|
|
it('#merge', () => {
|
|
accountActionsAPI.merge(1, 2);
|
|
expect(context.axiosMock.post).toHaveBeenCalledWith(
|
|
'/api/v1/actions/contact_merge',
|
|
{
|
|
base_contact_id: 1,
|
|
mergee_contact_id: 2,
|
|
}
|
|
);
|
|
});
|
|
});
|
|
});
|