(testInterface: ExecutionContext<Context>, ...args: Args)
| 281 | | ((t: ExecutionContext<Context>) => Promise<void>) |
| 282 | ) { |
| 283 | function macro(testInterface: ExecutionContext<Context>, ...args: Args) { |
| 284 | const ret = cb(...args); |
| 285 | const macroFunction = Array.isArray(ret) ? ret[1] : ret; |
| 286 | return macroFunction(testInterface); |
| 287 | } |
| 288 | macro.title = function (givenTitle: string | undefined, ...args: Args) { |
| 289 | const ret = cb(...args); |
| 290 | return Array.isArray(ret) |
no outgoing calls
no test coverage detected
searching dependent graphs…