(fileName: string, content: string)
| 522 | } |
| 523 | |
| 524 | createFile(fileName: string, content: string) { |
| 525 | const filePath = join(this.testDir!, fileName); |
| 526 | writeFileSync(filePath, content); |
| 527 | return filePath; |
| 528 | } |
| 529 | |
| 530 | mkdir(dir: string) { |
| 531 | mkdirSync(join(this.testDir!, dir), { recursive: true }); |
no outgoing calls