feat: default developer mode to nodevm and remove vm2 (#6187)

This commit is contained in:
lohit
2025-11-29 00:04:55 +05:30
committed by GitHub
parent 8c06a229e9
commit 4f8d2c0c67
24 changed files with 249 additions and 405 deletions

View File

@@ -102,7 +102,7 @@ const printRunSummary = (results) => {
};
const getJsSandboxRuntime = (sandbox) => {
return sandbox === 'safe' ? 'quickjs' : 'vm2';
return sandbox === 'safe' ? 'quickjs' : 'nodevm';
};
const builder = async (yargs) => {

View File

@@ -620,7 +620,7 @@ const runSingleRequest = async function (
envVariables,
runtimeVariables,
collectionPath,
null,
onConsoleLog,
processEnvVars,
scriptingConfig,
runSingleRequestByPathname,
@@ -668,7 +668,7 @@ const runSingleRequest = async function (
envVariables,
runtimeVariables,
collectionPath,
null,
onConsoleLog,
processEnvVars,
scriptingConfig,
runSingleRequestByPathname,