(fileName: string, content: string)
| 181 | } |
| 182 | |
| 183 | createFile(fileName: string, content: string) { |
| 184 | const filePath = join(this.testDir!, fileName); |
| 185 | writeFileSync(filePath, content); |
| 186 | return filePath; |
| 187 | } |
| 188 | |
| 189 | mkdir(dir: string) { |
| 190 | mkdirSync(join(this.testDir!, dir), { recursive: true }); |
no outgoing calls
no test coverage detected