(report, index)
| 137 | } |
| 138 | |
| 139 | function serializeError(report, index) { |
| 140 | return `[ERROR ${index + 1}] ${report.title} |
| 141 | Errors: |
| 142 | ${report.errors.map((err, i) => `${i + 1}. ${err}`).join('\n')} |
| 143 | Perf map content: |
| 144 | ${report.perfMap} |
| 145 | </end perf map content> |
| 146 | `; |
| 147 | } |
| 148 | |
| 149 | function runSuite() { |
| 150 | const failures = []; |
no test coverage detected
searching dependent graphs…