14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
|
/* eslint-disable import/no-commonjs */
|
||
|
|
||
|
const $ = jest.requireActual('jquery');
|
||
|
|
||
|
// Fail tests for unmocked requests
|
||
|
$.ajax = () => {
|
||
|
throw new Error(
|
||
|
'Unexpected unmocked jQuery.ajax() call! Make sure to mock jQuery.ajax() in tests.',
|
||
|
);
|
||
|
};
|
||
|
|
||
|
// jquery is not an ES6 module
|
||
|
module.exports = $;
|