(name, fn, path)
| 18 | |
| 19 | const processors = { |
| 20 | async describe(name, fn, path) { |
| 21 | stack.push(name); |
| 22 | log('INFO', name); |
| 23 | await fn(); |
| 24 | stack.pop(); |
| 25 | }, |
| 26 | async test(name, fn, path) { |
| 27 | let stackBefore = stack; |
| 28 | stack = path.concat(name); |
no test coverage detected
searching dependent graphs…