()
| 67 | let logs: string[] = [] |
| 68 | |
| 69 | const addCurrentDetails = () => { |
| 70 | const failLength: number = result.failed.length |
| 71 | if (currentDetails && !!failLength) { |
| 72 | result.failed[failLength - 1].details = currentDetails |
| 73 | currentDetails = null |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | for (const line of lines) { |
| 78 | if (!line.length || !!r.ignore.exec(line)) { |