This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
396 B
JavaScript
Raw Normal View History

2014-09-18 15:35:58 -04:00
this.suite2 = {
'another test': function (test) {
setTimeout(function () {
// lots of assertions
test.ok(true, 'everythings ok');
test.ok(true, 'everythings ok');
test.ok(true, 'everythings ok');
test.ok(true, 'everythings ok');
test.ok(true, 'everythings ok');
test.done();
}, 10);
}
};