Skip to content

Commit 50d483a

Browse files
committed
Dev: Re-enable test
DD-759
1 parent 5a54c69 commit 50d483a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

test/api/move().js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,18 @@ describe('colReorder - move()', function() {
9393
dt.html('basic');
9494
let table;
9595

96-
// TK COLIN Disabled because of DD-759
97-
// it('Ensure row heights are sensible', function() {
98-
// table = $('#example').DataTable({
99-
// colReorder: true
100-
// });
96+
it('Ensure row heights are sensible', function() {
97+
table = $('#example').DataTable({
98+
colReorder: true
99+
});
101100

102-
// let height = $('tbody tr:eq(1)').height();
101+
let height = $('tbody tr:eq(1)').height();
103102

104-
// table.column(1).visible(false);
105-
// table.colReorder.move(4, 3);
106-
// table.columns().visible(true);
103+
table.column(1).visible(false);
104+
table.colReorder.move(4, 3);
105+
table.columns().visible(true);
107106

108-
// expect(height).toBe($('tbody tr:eq(1)').height())
109-
// });
107+
expect(height).toBe($('tbody tr:eq(1)').height())
108+
});
110109
});
111110
});

0 commit comments

Comments
 (0)