summaryrefslogtreecommitdiff
path: root/spec/frontend/mocks/node/jquery.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/mocks/node/jquery.js')
-rw-r--r--spec/frontend/mocks/node/jquery.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/frontend/mocks/node/jquery.js b/spec/frontend/mocks/node/jquery.js
new file mode 100644
index 00000000000..34a25772f67
--- /dev/null
+++ b/spec/frontend/mocks/node/jquery.js
@@ -0,0 +1,13 @@
+/* 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 = $;