1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-04 07:33:18 +02:00
TableFilter/test/test-no-rows.js

11 lines
226 B
JavaScript
Raw Normal View History

2017-01-04 04:09:18 +01:00
module('TableFilter with no rows');
test('throws when no rows', function() {
throws(
2017-05-25 05:51:44 +02:00
function() { new TableFilter('demo'); },
2017-01-04 04:09:18 +01:00
Error,
'Throws Error when DOM table does not contain rows'
);
});