Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2019-06-03 17:36:34 +0300
committerClement Ho <clemmakesapps@gmail.com>2019-06-03 17:36:34 +0300
commitaea013eab9c0f71e95f75f47fa382f4d8f2d3ace (patch)
tree34197ea7a42b8eb9419f3ef10681413d9198e961 /spec/frontend/helpers
parent8a2afff06134447bcf80d39bcb1a5e378789df06 (diff)
Move NoteApp tests to Jest
Diffstat (limited to 'spec/frontend/helpers')
-rw-r--r--spec/frontend/helpers/jquery.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/frontend/helpers/jquery.js b/spec/frontend/helpers/jquery.js
new file mode 100644
index 00000000000..6421a592c0c
--- /dev/null
+++ b/spec/frontend/helpers/jquery.js
@@ -0,0 +1,6 @@
+import $ from 'jquery';
+
+global.$ = $;
+global.jQuery = $;
+
+export default $;