1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-04-24 19:20:40 +02:00
TableFilter/test/test-no-rows.js
2017-05-25 13:51:44 +10:00

11 lines
226 B
JavaScript

module('TableFilter with no rows');
test('throws when no rows', function() {
throws(
function() { new TableFilter('demo'); },
Error,
'Throws Error when DOM table does not contain rows'
);
});