We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63ccedb commit c698fcaCopy full SHA for c698fca
src/node/services/testInstanceService.ts
@@ -136,6 +136,12 @@ export class TestInstanceService {
136
detached: true,
137
stdio: "ignore",
138
windowsHide: true,
139
+ env: {
140
+ ...process.env,
141
+ // Ensure test instances stay isolated even if the parent was launched with
142
+ // MUX_USER_DATA_DIR (which would otherwise override per-root userData).
143
+ MUX_USER_DATA_DIR: path.join(rootDir, "user-data"),
144
+ },
145
});
146
child.unref();
147
0 commit comments