(code: string, options?: CliOptions & { fnFn?: boolean })
| 1685 | } |
| 1686 | |
| 1687 | async function collectTests(code: string, options?: CliOptions & { fnFn?: boolean }) { |
| 1688 | return testTree(await collectTestModule(code, options), {}, options?.fnFn) |
| 1689 | } |
| 1690 | |
| 1691 | function testTree(module: TestModule | TestSuite, tree: any = {}, fnFn?: boolean) { |
| 1692 | for (const item of module.children) { |
no test coverage detected