From 8b75948934667904196aba319aedda25b00f06ff Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 15 Jan 2021 00:10:45 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/frontend/__helpers__/jquery.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 spec/frontend/__helpers__/jquery.js (limited to 'spec/frontend/__helpers__/jquery.js') diff --git a/spec/frontend/__helpers__/jquery.js b/spec/frontend/__helpers__/jquery.js new file mode 100644 index 00000000000..4af5f904394 --- /dev/null +++ b/spec/frontend/__helpers__/jquery.js @@ -0,0 +1,18 @@ +import $ from 'jquery'; + +// 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 +global.$ = $; +global.jQuery = $; + +// 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; +}; + +export default $; -- cgit v1.2.3