From 599f5d2c67571f84a045a59eb3423bc254ee87d9 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Fri, 16 Jul 2021 11:43:14 +0200 Subject: [PATCH] skip failing tests - #128828 --- .../src/singlefolder-tests/terminal.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 bc72fe0d18e..0fa53ede3dd 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts @@ -669,7 +669,7 @@ import { assertNoRpc } from '../utils'; }); suite('environmentVariableCollection', () => { - test('should have collection variables apply to terminals immediately after setting', (done) => { + test.skip('should have collection variables apply to terminals immediately after setting', (done) => { // Text to match on before passing the test const expectedText = [ '~a2~', @@ -714,7 +714,7 @@ import { assertNoRpc } from '../utils'; terminal.sendText('echo $C'); }); - test('should have collection variables apply to environment variables that don\'t exist', (done) => { + test.skip('should have collection variables apply to environment variables that don\'t exist', (done) => { // Text to match on before passing the test const expectedText = [ '~a2~', @@ -759,7 +759,7 @@ import { assertNoRpc } from '../utils'; terminal.sendText('echo $C'); }); - test('should respect clearing entries', (done) => { + test.skip('should respect clearing entries', (done) => { // Text to match on before passing the test const expectedText = [ '~a1~', @@ -800,7 +800,7 @@ import { assertNoRpc } from '../utils'; terminal.sendText('echo $B'); }); - test('should respect deleting entries', (done) => { + test.skip('should respect deleting entries', (done) => { // Text to match on before passing the test const expectedText = [ '~a1~',