diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-06-03 14:36:34 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2019-06-03 14:36:34 +0000 |
commit | aea013eab9c0f71e95f75f47fa382f4d8f2d3ace (patch) | |
tree | 34197ea7a42b8eb9419f3ef10681413d9198e961 /spec/frontend/helpers/jquery.js | |
parent | 8a2afff06134447bcf80d39bcb1a5e378789df06 (diff) | |
download | gitlab-ce-aea013eab9c0f71e95f75f47fa382f4d8f2d3ace.tar.gz |
Move NoteApp tests to Jest
Diffstat (limited to 'spec/frontend/helpers/jquery.js')
-rw-r--r-- | spec/frontend/helpers/jquery.js | 6 |
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 $; |