(name: string, content: string)
| 22 | }); |
| 23 | |
| 24 | function writeJson(name: string, content: string): string { |
| 25 | const path = join(tmpDir, name); |
| 26 | writeFileSync(path, content, "utf8"); |
| 27 | return path; |
| 28 | } |
| 29 | |
| 30 | function writeIndex(schema = "[]"): string { |
| 31 | return writeJson( |
no outgoing calls
no test coverage detected