4dd49812863aceb2cfa84d96482603cbc59c94cf.svn-base 319 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 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(); } };