1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-08 17:02:30 +02:00
TableFilter/test/test-alternate-rows.js
2015-06-08 01:31:15 +10:00

16 lines
311 B
JavaScript

var tf = new TableFilter('demo', {
base_path: '../dist/tablefilter/',
alternate_rows: true
});
tf.init();
module('Sanity checks');
test('AlternateRows component', function() {
deepEqual(
typeof tf.feature('alternateRows'),
'object',
'AlternateRows instanciated'
);
});