debian-mirror-gitlab/spec/frontend/__helpers__/jquery.js

19 lines
462 B
JavaScript
Raw Normal View History

2019-09-04 21:01:54 +05:30
import $ from 'jquery';
2020-04-22 19:07:51 +05:30
// Expose jQuery so specs using jQuery plugins can be imported nicely.
// Here is an issue to explore better alternatives:
// https://gitlab.com/gitlab-org/gitlab/issues/12448
2019-09-04 21:01:54 +05:30
global.$ = $;
global.jQuery = $;
2020-04-22 19:07:51 +05:30
// Fail tests for unmocked requests
$.ajax = () => {
const err = new Error(
'Unexpected unmocked jQuery.ajax() call! Make sure to mock jQuery.ajax() in tests.',
);
global.fail(err);
throw err;
};
2019-09-04 21:01:54 +05:30
export default $;