(tree)
| 185 | } |
| 186 | |
| 187 | _shutdownSummary(tree) { |
| 188 | const summary = { |
| 189 | totalTime: totalTime(tree), |
| 190 | platform: { |
| 191 | name: process.platform, |
| 192 | }, |
| 193 | }; |
| 194 | |
| 195 | _getHardwareInfo(summary.platform); |
| 196 | |
| 197 | return summary; |
| 198 | } |
| 199 | |
| 200 | _instrumentationFor(name) { |
| 201 | let instr = this.instrumentations[name]; |
no test coverage detected