1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-18 06:16:39 +02:00
TableFilter/test/test-no-rows.js
2017-01-04 14:09:18 +11:00

11 lines
225 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'
);
});