(kind: string)
| 96 | expect(errors).toEqual([]); |
| 97 | |
| 98 | const byKind = (kind: string) => nodes.filter((n) => n.kind === kind); |
| 99 | expect(byKind('file')).toHaveLength(1); |
| 100 | expect(byKind('class').map((n) => n.name)).toEqual(['MathHelper']); |
| 101 | expect(byKind('method').map((n) => n.qualifiedName)).toEqual(['MathHelper::calculateTotal']); |
no outgoing calls
no test coverage detected