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
2 changed files with 3 additions and 3 deletions

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');