1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// todo tests
// - Confirm it exists and is a function
// - Always returns an API instance
// - Test when table is hidden on load make sure calcs match what we expect
// - Change length of data in one columns and check new widths are correct
describe( "columns- columns.adjust()", function() {
dt.libs( {
js: [ 'jquery', 'datatables' ],
css: [ 'datatables' ]
} );
describe("Check the defaults", function () {
dt.html( 'basic' );
it("Exists and is a function", function () {
var table = $('#example').DataTable();
expect(typeof table.columns.adjust).toBe('function');
});
dt.html( 'basic' );
it("Returns an API instance", function () {
var table = $('#example').DataTable();
expect(table.columns.adjust() instanceof $.fn.dataTable.Api).toBe(true);
});
dt.html( 'basic' );
it("Table hidden on load", function () {
$('#dt-test-loader-container').hide();
var table = $('#example').DataTable({
"scrollY": 200
});
console.log($('#example').width());
$('#dt-test-loader-container').show();
$( table.table().header() ).width();
$( table.table().body() ).width();
debugger
table.columns.adjust();
console.log($('#example').width());
//first test check they are not the same, second test call adjust then check they are the same.
});
});
});
|