gitlab-org--gitlab-foss/app/assets/javascripts/test_utils/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
344 B
JavaScript
Raw Normal View History

import { editor } from 'monaco-editor';
import { Sortable } from 'sortablejs';
2017-04-04 17:47:12 +00:00
import simulateDrag from './simulate_drag';
import simulateInput from './simulate_input';
2017-04-04 17:47:12 +00:00
// Export to global space for rspec to use
window.localMonaco = editor;
2017-04-04 17:47:12 +00:00
window.simulateDrag = simulateDrag;
window.simulateInput = simulateInput;
window.Sortable = Sortable;