diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-11 12:06:29 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-11 12:06:29 +0000 |
commit | f03a645e7409882fe8b1aceca1735bc9051c612a (patch) | |
tree | 3d055c210ff663865e5c905cab208f74ebbcef2f /app/assets/javascripts/test_utils/index.js | |
parent | 0dea53d5e575c6c15ce7384da73b8d4a95b1c8cf (diff) | |
download | gitlab-ce-f03a645e7409882fe8b1aceca1735bc9051c612a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/test_utils/index.js')
-rw-r--r-- | app/assets/javascripts/test_utils/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/test_utils/index.js b/app/assets/javascripts/test_utils/index.js index 1e75ee60671..1a1f3e8d0a8 100644 --- a/app/assets/javascripts/test_utils/index.js +++ b/app/assets/javascripts/test_utils/index.js @@ -1,8 +1,10 @@ import 'core-js/es/map'; import 'core-js/es/set'; +import { Sortable } from 'sortablejs'; import simulateDrag from './simulate_drag'; import simulateInput from './simulate_input'; // Export to global space for rspec to use window.simulateDrag = simulateDrag; window.simulateInput = simulateInput; +window.Sortable = Sortable; |