(event: any)
| 76 | ]) |
| 77 | |
| 78 | function formatStack(event: any) { |
| 79 | return event.stack |
| 80 | ?.map( |
| 81 | (frame: any) => |
| 82 | `${path.relative(ctx.config.root, frame.file)}:${frame.line}:${frame.column}`, |
| 83 | ) |
| 84 | .join('\n') |
| 85 | } |
| 86 | |
| 87 | for (const traceFile of traceFiles) { |
| 88 | const zipPath = resolve(basicTestTracesFolder, traceFile) |
no outgoing calls
no test coverage detected