mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
14 lines
396 B
JavaScript
14 lines
396 B
JavaScript
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);
|
|
}
|
|
};
|