1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-24 08:20:22 +02:00
TableFilter/test/test-alternate-rows.js

16 lines
311 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.feature('alternateRows'),
'object',
'AlternateRows instanciated'
);
2015-05-10 13:12:31 +02:00
});