(reactPath = getDefaultReactPath(), benchmark)
| 43 | } |
| 44 | |
| 45 | async function buildBenchmark(reactPath = getDefaultReactPath(), benchmark) { |
| 46 | // get the build.js from the benchmark directory and execute it |
| 47 | await require(join(__dirname, 'benchmarks', benchmark, 'build.js'))( |
| 48 | reactPath, |
| 49 | asyncCopyTo |
| 50 | ); |
| 51 | } |
| 52 | |
| 53 | async function getMergeBaseFromLocalGitRepo(localRepo) { |
| 54 | const repo = await Git.Repository.open(localRepo); |
no test coverage detected