We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f070d03 commit 079d5f2Copy full SHA for 079d5f2
packages/core/src/introspection.ts
@@ -31,7 +31,12 @@ export const getV8Flags = () => {
31
}
32
33
if (codspeedRunnerMode === "walltime") {
34
- flags.push(...["--perf-prof", "--perf-prof-unwinding-info"]);
+ flags.push(
35
+ ...[
36
+ // "--perf-prof",
37
+ "--perf-prof-unwinding-info",
38
+ ]
39
+ );
40
41
return flags;
42
};
0 commit comments