mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
30 lines
906 B
JavaScript
30 lines
906 B
JavaScript
import csatReportsAPI from '../csatReports';
|
|
import ApiClient from '../ApiClient';
|
|
import describeWithAPIMock from './apiSpecHelper';
|
|
|
|
describe('#Reports API', () => {
|
|
it('creates correct instance', () => {
|
|
expect(csatReportsAPI).toBeInstanceOf(ApiClient);
|
|
expect(csatReportsAPI.apiVersion).toBe('/api/v1');
|
|
expect(csatReportsAPI).toHaveProperty('get');
|
|
expect(csatReportsAPI).toHaveProperty('getMetrics');
|
|
});
|
|
describeWithAPIMock('API calls', context => {
|
|
it('#get', () => {
|
|
csatReportsAPI.get({ page: 1 });
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/csat_survey_responses',
|
|
{
|
|
params: { page: 1 },
|
|
}
|
|
);
|
|
});
|
|
it('#getMetrics', () => {
|
|
csatReportsAPI.getMetrics();
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/csat_survey_responses/metrics'
|
|
);
|
|
});
|
|
});
|
|
});
|