Skip to content

Commit

Permalink
Disable env var collection test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Jul 15, 2021
1 parent 70d4aaa commit 039582c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
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
Expand Down Expand Up @@ -669,7 +670,8 @@ import { assertNoRpc } from '../utils';
});

suite('environmentVariableCollection', () => {
test('should have collection variables apply to terminals immediately after setting', (done) => {
// https://github.com/microsoft/vscode/issues/128710
(os.platform() === 'win32' ? test.skip : test)('should have collection variables apply to terminals immediately after setting', (done) => {
// Text to match on before passing the test
const expectedText = [
'~a2~',
Expand Down

0 comments on commit 039582c

Please sign in to comment.