We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebeb627 commit c9cb492Copy full SHA for c9cb492
1 file changed
test/arguments/command-resolution.js
@@ -295,7 +295,7 @@ if (isWindows) {
295
env: {
296
Path: binaryDirectory,
297
PathExt: '.CMD',
298
- [environmentName]: '1',
+ [environmentName]: '',
299
},
300
};
301
const {stdout} = await execa(command, options);
@@ -305,7 +305,7 @@ if (isWindows) {
305
t.is(stdoutSync, 'PATH');
306
307
delete options.env[environmentName];
308
- process.env[environmentName] = '1';
+ process.env[environmentName] = '';
309
const {stdout: parentEnvironmentStdout} = await execa(command, options);
310
t.is(parentEnvironmentStdout, 'PATH');
311
0 commit comments