Name: js-handler/node_modules/nodeunit/examples/browser/suite1.js 
1:
this.suite1 = {
2:
    'test one': function (test) {
3:
        test.ok(true, 'everythings ok');
4:
        setTimeout(function () {
5:
            test.done();
6:
        }, 10);
7:
    },
8:
    'apples and oranges': function (test) {
9:
        test.equal('apples', 'oranges', 'comparing apples and oranges');
10:
        test.done();
11:
    }
12:
};