summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/test_utils/index.js
blob: 1a1f3e8d0a8071544c5dbcdbf348912c84871c8b (plain)
1
2
3
4
5
6
7
8
9
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;