Skip to content

Commit 079d5f2

Browse files
chore: test without perf-prof
1 parent f070d03 commit 079d5f2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/core/src/introspection.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ export const getV8Flags = () => {
3131
}
3232

3333
if (codspeedRunnerMode === "walltime") {
34-
flags.push(...["--perf-prof", "--perf-prof-unwinding-info"]);
34+
flags.push(
35+
...[
36+
// "--perf-prof",
37+
"--perf-prof-unwinding-info",
38+
]
39+
);
3540
}
3641
return flags;
3742
};

0 commit comments

Comments
 (0)