Revert "Expose shell's environment - bash " (#237791)

Revert "Expose shell's environment - bash  (#237602)"

This reverts commit e6805d7927.
This commit is contained in:
Aiday Marlen Kyzy
2025-01-13 10:54:20 +01:00
committed by GitHub
parent 3ff1dceedf
commit 69d97b0773
5 changed files with 1 additions and 106 deletions

View File

@@ -87,16 +87,6 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});
if (platform() === 'darwin' || platform() === 'linux') {
test('Test if env is set', async () => {
const { shellIntegration } = await createTerminalAndWaitForShellIntegration();
const env = shellIntegration.env;
ok(env);
ok(env.PATH);
ok(env.PATH.length > 0, 'env.PATH should have a length greater than 0');
});
}
test('execution events should fire in order when a command runs', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const events: string[] = [];