summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/test_utils/index.js
blob: 369cf9714e82712bb2bc3d3600748113aa1e1dd7 (plain)
1
2
3
4
5
6
7
8
9
10
import { editor } from 'monaco-editor';
import { Sortable } from 'sortablejs';
import simulateDrag from './simulate_drag';
import simulateInput from './simulate_input';

// Export to global space for rspec to use
window.localMonaco = editor;
window.simulateDrag = simulateDrag;
window.simulateInput = simulateInput;
window.Sortable = Sortable;