We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5872ffa commit 650679bCopy full SHA for 650679b
1 file changed
packages/tinybench-plugin/src/walltime.ts
@@ -1,7 +1,6 @@
1
import {
2
Benchmark,
3
calculateQuantiles,
4
- InstrumentHooks,
5
mongoMeasurement,
6
msToNs,
7
msToS,
@@ -53,11 +52,11 @@ export function setupCodspeedWalltimeBench(
53
52
await task.warmup();
54
}
55
await mongoMeasurement.start(uri);
56
- InstrumentHooks.startBenchmark();
+ // InstrumentHooks.startBenchmark();
57
const taskResult = await task.run();
58
- InstrumentHooks.stopBenchmark();
+ // InstrumentHooks.stopBenchmark();
59
await mongoMeasurement.stop(uri);
60
- InstrumentHooks.setExecutedBenchmark(process.pid, uri);
+ // InstrumentHooks.setExecutedBenchmark(process.pid, uri);
61
results.push(taskResult);
62
63
if (task.result) {
0 commit comments