fix: keep bundled dir test argv mutable

This commit is contained in:
Peter Steinberger
2026-04-08 09:58:08 +01:00
parent 0950bdf727
commit 9b0f7e0e82

View File

@@ -253,7 +253,7 @@ describe("resolveBundledPluginsDir", () => {
repoRoot,
expectedRelativeDir: expectation.expectedRelativeDir,
...("vitest" in expectation ? { vitest: expectation.vitest } : {}),
...("execArgv" in expectation ? { execArgv: expectation.execArgv } : {}),
...("execArgv" in expectation ? { execArgv: [...expectation.execArgv] } : {}),
});
});