blob: c083a1935c7f62fbc36e526be6ef61cca84c018f (
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('async_testing').run(__filename, 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();
}
};
|