UNPKG

396 BJavaScriptView Raw
1this.suite2 = {
2 'another test': function (test) {
3 setTimeout(function () {
4 // lots of assertions
5 test.ok(true, 'everythings ok');
6 test.ok(true, 'everythings ok');
7 test.ok(true, 'everythings ok');
8 test.ok(true, 'everythings ok');
9 test.ok(true, 'everythings ok');
10 test.done();
11 }, 10);
12 }
13};