(relativePath: string, content: string)
| 49 | }); |
| 50 | |
| 51 | function createExternalTestFile(relativePath: string, content: string): vs.Uri { |
| 52 | const tempFolder = getRandomTempFolder(); |
| 53 | const absolutePath = path.join(tempFolder, relativePath); |
| 54 | createTempTestFile(absolutePath, content); |
| 55 | return vs.Uri.file(absolutePath); |
| 56 | } |
no test coverage detected