(tree, commandName, commandArgs)
| 170 | } |
| 171 | |
| 172 | _commandSummary(tree, commandName, commandArgs) { |
| 173 | const summary = { |
| 174 | name: commandName, |
| 175 | args: commandArgs, |
| 176 | totalTime: totalTime(tree), |
| 177 | platform: { |
| 178 | name: process.platform, |
| 179 | }, |
| 180 | }; |
| 181 | |
| 182 | _getHardwareInfo(summary.platform); |
| 183 | |
| 184 | return summary; |
| 185 | } |
| 186 | |
| 187 | _shutdownSummary(tree) { |
| 188 | const summary = { |
no test coverage detected