From 91ef2dd04ab584302986478136f53c199db4cff8 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 15 Jul 2021 05:56:01 -0700 Subject: [PATCH] Remove child process monitor logs --- .../vscode-api-tests/src/singlefolder-tests/terminal.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts index 85ae72f4903..d2298c1dabe 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts @@ -6,7 +6,6 @@ import { window, Pseudoterminal, EventEmitter, TerminalDimensions, workspace, ConfigurationTarget, Disposable, UIKind, env, EnvironmentVariableMutatorType, EnvironmentVariableMutator, extensions, ExtensionContext, TerminalOptions, ExtensionTerminalOptions, Terminal } from 'vscode'; import { doesNotThrow, equal, deepEqual, throws, strictEqual } from 'assert'; import { assertNoRpc } from '../utils'; -import * as os from 'os'; // Disable terminal tests: // - Web https://github.com/microsoft/vscode/issues/92826 @@ -669,8 +668,7 @@ import * as os from 'os'; }); }); - // https://github.com/microsoft/vscode/issues/128710 - (os.platform() === 'win32' ? suite.skip : suite)('environmentVariableCollection', () => { + suite('environmentVariableCollection', () => { test('should have collection variables apply to terminals immediately after setting', (done) => { // Text to match on before passing the test const expectedText = [ -- GitLab