MCPcopy Index your code
hub / github.com/angular/angular / runStylingBenchmark

Function runStylingBenchmark

modules/benchmarks/src/styling/styling_perf.spec.ts:111–120  ·  view source on GitHub ↗

* Runs the styling benchmark with the given id and worker. The worker describes * the actions that should run for preparation and measurement.

(id: string, worker: {prepare: () => void; work: () => void})

Source from the content-addressed store, hash-verified

109 * the actions that should run for preparation and measurement.
110 */
111function runStylingBenchmark(id: string, worker: {prepare: () => void; work: () => void}) {
112 return runBenchmark({
113 id,
114 url: '/',
115 params: [],
116 ignoreBrowserSynchronization: true,
117 prepare: worker.prepare,
118 work: worker.work,
119 });
120}

Callers 1

Calls 1

runBenchmarkFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…