(error, one, two, three)
| 14 | .await(callback); |
| 15 | |
| 16 | function callback(error, one, two, three) { |
| 17 | test.equal(error, null); |
| 18 | test.ok(one.size > 0); |
| 19 | test.ok(two.size > 0); |
| 20 | test.ok(three.size > 0); |
| 21 | test.end(); |
| 22 | } |
| 23 | }); |
| 24 | |
| 25 | tape("if the concurrency is invalid, an Error is thrown", function(test) { |
no outgoing calls
no test coverage detected
searching dependent graphs…