We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f2895 commit 53df797Copy full SHA for 53df797
1 file changed
packages/tester/src/index.ts
@@ -1,4 +1,5 @@
1
import * as path from 'node:path';
2
+import * as os from 'node:os';
3
import { fileURLToPath } from 'node:url';
4
import type { Options } from '@deot/dev-shared';
5
import { Utils, Shell, Logger, Locals } from '@deot/dev-shared';
@@ -89,6 +90,10 @@ export const run = (options: Options) => Utils.autoCatch(async () => {
89
90
91
const options$: CliOptions = {
92
environment,
93
+ execArgv: [
94
+ '--localstorage-file',
95
+ path.resolve(os.tmpdir(), `vitest-${process.pid}.localstorage`),
96
+ ],
97
coverage: {
98
enabled: !!coverage,
99
},
0 commit comments