(reactPath)
| 81 | // get the performance benchmark results |
| 82 | // of the local react repo |
| 83 | async function benchmarkLocal(reactPath) { |
| 84 | console.log(chalk.gray(`- Building React bundles...`)); |
| 85 | await buildReactBundles(reactPath, skipBuild); |
| 86 | return { |
| 87 | benchmarks: await runBenchmarks(reactPath), |
| 88 | }; |
| 89 | } |
| 90 | |
| 91 | async function runLocalBenchmarks(showResults) { |
| 92 | console.log( |
no test coverage detected