const $ = require('jquery') window.jQuery = $; const tableDnD = require('../js/jquery.tablednd'); beforeEach(function() { document.body.innerHTML = '' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''; }); test('Creates a TableDnD table', function() { var $table = $('#table1'); var table = $table.tableDnD(); expect(table).not.toBeUndefined(); }); test('Simulate drag and drop', function() { var $table = $('#table1'); var table = $table.tableDnD(); var $row = $('#row1'); TestUtils.Simulate.dragStart($row, {dataTransfer: null}); });
Col1
Row1
Row2
Row3