Home / Function/ runRemoteBenchmarks() — react Function Reference

runRemoteBenchmarks() — react Function Reference

Architecture documentation for the runRemoteBenchmarks() function in runner.js from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  84a47900_9c3f_5fb3_3b98_4632e7997e3b["runRemoteBenchmarks()"]
  b4fea2f4_8c60_e575_c4e5_90aa97dfacad["runner.js"]
  84a47900_9c3f_5fb3_3b98_4632e7997e3b -->|defined in| b4fea2f4_8c60_e575_c4e5_90aa97dfacad
  324ab7a7_a61d_a263_5cc4_cec20255c9a0["compareLocalToMaster()"]
  324ab7a7_a61d_a263_5cc4_cec20255c9a0 -->|calls| 84a47900_9c3f_5fb3_3b98_4632e7997e3b
  dcce1ec9_a1d5_13df_b4f6_9b3831af820d["benchmarkRemoteMaster()"]
  84a47900_9c3f_5fb3_3b98_4632e7997e3b -->|calls| dcce1ec9_a1d5_13df_b4f6_9b3831af820d
  style 84a47900_9c3f_5fb3_3b98_4632e7997e3b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

scripts/bench/runner.js lines 104–115

async function runRemoteBenchmarks(showResults) {
  console.log(
    chalk.white.bold('Running benchmarks for ') +
      chalk.yellow.bold('Remote (Merge Base)')
  );
  const remoteMasterResults = await benchmarkRemoteMaster();

  if (showResults) {
    printResults(null, remoteMasterResults);
  }
  return remoteMasterResults;
}

Domain

Subdomains

Frequently Asked Questions

What does runRemoteBenchmarks() do?
runRemoteBenchmarks() is a function in the react codebase, defined in scripts/bench/runner.js.
Where is runRemoteBenchmarks() defined?
runRemoteBenchmarks() is defined in scripts/bench/runner.js at line 104.
What does runRemoteBenchmarks() call?
runRemoteBenchmarks() calls 1 function(s): benchmarkRemoteMaster.
What calls runRemoteBenchmarks()?
runRemoteBenchmarks() is called by 1 function(s): compareLocalToMaster.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free