(filePath: string)
| 4786 | |
| 4787 | describe('Nix path import resolution', () => { |
| 4788 | function fileNode(filePath: string) { |
| 4789 | return cg.getNodesByKind('file').find((n) => n.filePath === filePath); |
| 4790 | } |
| 4791 | |
| 4792 | function importedFilePaths(fromFile: string): string[] { |
| 4793 | const source = fileNode(fromFile); |
no test coverage detected