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.

13 lines
319 B
JavaScript
Raw Normal View History

2014-09-18 15:35:58 -04:00
this.suite1 = {
'test one': function (test) {
test.ok(true, 'everythings ok');
setTimeout(function () {
test.done();
}, 10);
},
'apples and oranges': function (test) {
test.equal('apples', 'oranges', 'comparing apples and oranges');
test.done();
}
};