(config, logFilePath, logger)
| 475 | } |
| 476 | |
| 477 | function writeScenarioLogs (config, logFilePath, logger) { |
| 478 | if (config.scenarioLogsInReports) { |
| 479 | return fs.writeFile(logFilePath, JSON.stringify(logger.logged)); |
| 480 | } else { |
| 481 | return Promise.resolve(true); |
| 482 | } |
| 483 | } |
no outgoing calls
no test coverage detected