UNPKG

236 BJavaScriptView Raw
1
2
3module('TableFilter with no rows');
4test('throws when no rows', function() {
5 throws(
6 function() { new TableFilter('demo'); },
7 Error,
8 'Throws Error when DOM table does not contain rows'
9 );
10});