(name: string)
| 61 | await cg.indexAll(); |
| 62 | |
| 63 | const kindOf = (name: string) => |
| 64 | cg.getNodesByName(name).map((n) => n.kind).sort().join(','); |
| 65 | |
| 66 | expect(kindOf('fonts')).toBe('property'); |
| 67 | expect(kindOf('history')).toBe('property'); |
no test coverage detected