(showResults)
| 102 | } |
| 103 | |
| 104 | async function runRemoteBenchmarks(showResults) { |
| 105 | console.log( |
| 106 | chalk.white.bold('Running benchmarks for ') + |
| 107 | chalk.yellow.bold('Remote (Merge Base)') |
| 108 | ); |
| 109 | const remoteMasterResults = await benchmarkRemoteMaster(); |
| 110 | |
| 111 | if (showResults) { |
| 112 | printResults(null, remoteMasterResults); |
| 113 | } |
| 114 | return remoteMasterResults; |
| 115 | } |
| 116 | |
| 117 | async function compareLocalToMaster() { |
| 118 | console.log( |
no test coverage detected