From 0ebe81ecc1e993115f376d8216db9684cf512d4f Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 12 Feb 2021 15:19:34 -0800 Subject: [PATCH] Revert "Skip all but 2" This reverts commit 7934b9d439cf450b2f0dd5bc36dc318dde17e272. --- .../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 ae570bcd7a5..aaaeebd859b 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts @@ -164,7 +164,7 @@ import { assertNoRpc } from '../utils'; }); }); - test.skip('creationOptions should be set and readonly for TerminalOptions terminals', async () => { + test('creationOptions should be set and readonly for TerminalOptions terminals', async () => { const options = { name: 'foo', hideFromUser: true @@ -190,7 +190,7 @@ import { assertNoRpc } from '../utils'; throws(() => terminalOptions.name = 'bad', 'creationOptions should be readonly at runtime'); }); - test.skip('onDidOpenTerminal should fire when a terminal is created', async () => { + test('onDidOpenTerminal should fire when a terminal is created', async () => { const terminal = window.createTerminal('b'); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { @@ -210,7 +210,7 @@ import { assertNoRpc } from '../utils'; }); }); - test.skip('exitStatus.code should be set to undefined after a terminal is disposed', async () => { + test('exitStatus.code should be set to undefined after a terminal is disposed', async () => { const terminal = window.createTerminal(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { @@ -301,7 +301,7 @@ import { assertNoRpc } from '../utils'; // terminal1.show(); // }); - suite.skip('hideFromUser', () => { + suite('hideFromUser', () => { test('should be available to terminals API', async () => { const terminal = window.createTerminal({ name: 'bg', hideFromUser: true }); const result = await new Promise(r => {