Revert "skip failing terminal tests."

This reverts commit 2d5f0e4953.
This commit is contained in:
Daniel Imms 2021-03-31 05:06:08 -07:00
parent 141ac31cdc
commit 4c76edff2b
No known key found for this signature in database
GPG key ID: D12BE8272D6284CC
2 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('echo works in the default shell', async () => {
test('echo works in the default shell', async () => {
const terminal = await new Promise<Terminal>(r => {
disposables.push(window.onDidOpenTerminal(t => {
if (t === terminal) {

View file

@ -33,7 +33,7 @@ import { assertNoRpc } from '../utils';
});
suite('ShellExecution', () => {
test.skip('Execution from onDidEndTaskProcess and onDidStartTaskProcess are equal to original', () => {
test('Execution from onDidEndTaskProcess and onDidStartTaskProcess are equal to original', () => {
return new Promise<void>(async (resolve) => {
const task = new Task({ type: 'testTask' }, TaskScope.Workspace, 'echo', 'testTask', new ShellExecution('echo', ['hello test']));
let taskExecution: TaskExecution | undefined;
@ -76,7 +76,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('dependsOn task should start with a different processId (#118256)', async () => {
test('dependsOn task should start with a different processId (#118256)', async () => {
// Set up dependsOn task by creating tasks.json since this is not possible via the API
// Tasks API
const tasksConfig = workspace.getConfiguration('tasks');