(filename: string, content: string)
| 21 | }); |
| 22 | |
| 23 | function writeFile(filename: string, content: string) { |
| 24 | const file = join(tempdir.name, filename); |
| 25 | fs.writeFileSync(file, content); |
| 26 | } |
| 27 | |
| 28 | describe("parsing", () => { |
| 29 | it("throws an error for invalid targetUri", async () => { |
no outgoing calls
no test coverage detected
searching dependent graphs…