( targetName: string, typeName: string | undefined, methodName: string, )
| 127 | } |
| 128 | |
| 129 | function formatDisplayName( |
| 130 | targetName: string, |
| 131 | typeName: string | undefined, |
| 132 | methodName: string, |
| 133 | ): string { |
| 134 | return `${targetName}/${typeName ?? 'Global'}/${methodName}`; |
| 135 | } |
| 136 | |
| 137 | function discoverTestsInFileContent( |
| 138 | targetName: string, |
no outgoing calls
no test coverage detected