2019-07-17 13:47:39 -04:00
|
|
|
import $ from 'jquery';
|
|
|
|
import axios from '~/lib/utils/axios_utils';
|
|
|
|
|
|
|
|
describe('Mock auto-injection', () => {
|
|
|
|
describe('mocks', () => {
|
2019-08-15 14:04:43 -04:00
|
|
|
let failMock;
|
|
|
|
beforeEach(() => {
|
|
|
|
failMock = jest.spyOn(global, 'fail').mockImplementation();
|
|
|
|
});
|
|
|
|
|
2020-05-05 08:09:31 -04:00
|
|
|
it('~/lib/utils/axios_utils', () => {
|
|
|
|
return Promise.all([
|
|
|
|
expect(axios.get('http://gitlab.com')).rejects.toThrow('Unexpected unmocked request'),
|
|
|
|
setImmediate(() => {
|
|
|
|
expect(failMock).toHaveBeenCalledTimes(1);
|
|
|
|
}),
|
|
|
|
]);
|
2019-08-15 14:04:43 -04:00
|
|
|
});
|
2019-07-17 13:47:39 -04:00
|
|
|
|
|
|
|
it('jQuery.ajax()', () => {
|
|
|
|
expect($.ajax).toThrow('Unexpected unmocked');
|
2019-08-15 14:04:43 -04:00
|
|
|
expect(failMock).toHaveBeenCalledTimes(1);
|
2019-07-17 13:47:39 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|