We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b69d56 commit 9481178Copy full SHA for 9481178
1 file changed
packages/core/src/introspection.ts
@@ -7,6 +7,10 @@ export const getV8Flags = () => {
7
const nodeVersionMajor = parseInt(process.version.slice(1).split(".")[0]);
8
const codspeedRunnerMode = getCodspeedRunnerMode();
9
10
+ if (codspeedRunnerMode === "walltime") {
11
+ return [];
12
+ }
13
+
14
const flags = ["--interpreted-frames-native-stack", "--allow-natives-syntax"];
15
16
if (codspeedRunnerMode === "instrumented") {
0 commit comments