(dir: string, name: string, content: unknown)
| 36 | } |
| 37 | |
| 38 | function writeJson(dir: string, name: string, content: unknown): string { |
| 39 | const filePath = join(dir, name); |
| 40 | writeFileSync(filePath, JSON.stringify(content), "utf-8"); |
| 41 | return filePath; |
| 42 | } |
| 43 | |
| 44 | describe("loadFixtureFile", () => { |
| 45 | let tmpDir: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…