(name: string, language: Language, filePath: string)
| 58 | } |
| 59 | |
| 60 | function ref(name: string, language: Language, filePath: string): UnresolvedRef { |
| 61 | return { |
| 62 | fromNodeId: `caller:${filePath}`, |
| 63 | referenceName: name, |
| 64 | referenceKind: 'calls', |
| 65 | line: 1, |
| 66 | column: 0, |
| 67 | filePath, |
| 68 | language, |
| 69 | }; |
| 70 | } |
| 71 | |
| 72 | describe('React Native bridge resolver', () => { |
| 73 | describe('detect()', () => { |
no outgoing calls
no test coverage detected