blob: 47062e358cd7810578d09e971f7caa3410574c9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
if (module == require.main) {
return require('./node-async-testing/lib/async_testing').run(process.ARGV);
}
module.exports = {
'test A': function(test) {
test.ok(true);
test.finish();
},
'test B': function(test) {
test.ok(true);
test.finish();
},
'test C': function(test) {
test.ok(true);
test.finish();
},
'test D': function(test) {
test.ok(true);
test.finish();
}
};
|