1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-20 23:36:39 +02:00
TableFilter/test/test-alternate-rows.js

12 lines
274 B
JavaScript
Raw Normal View History

2014-11-09 09:31:15 +01:00
2015-05-10 13:12:31 +02:00
var tf = new TableFilter('demo', {
base_path: '../dist/tablefilter/',
2015-05-10 13:12:31 +02:00
alternate_rows: true
});
tf.init();
2014-11-09 09:31:15 +01:00
2015-05-10 13:12:31 +02:00
module('Sanity checks');
test('AlternateRows component', function() {
deepEqual(typeof tf.Cpt.alternateRows, 'object', 'AlternateRows instanciated');
});