(filePath, contentForCreation, forceCreate = false)
| 336 | } |
| 337 | |
| 338 | readOrCreateOutputFile(filePath, contentForCreation, forceCreate = false) { |
| 339 | const currentTestsPath = this.getCurrentTestsPath() || __dirname |
| 340 | |
| 341 | const fullPath = path.join(currentTestsPath, 'tests/output', filePath) |
| 342 | return this.readOrCreateFile(fullPath, contentForCreation, forceCreate) |
| 343 | } |
| 344 | |
| 345 | readOrCreateFile(filePath, contentForCreation, forceCreate = false) { |
| 346 | TestHelper.latestFilePath = filePath |
no test coverage detected