Re-enable task and term test

This commit is contained in:
Daniel Imms 2021-03-08 17:07:14 -08:00
parent 8fe29a7c41
commit 5fdbc82111
2 changed files with 2 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import { assertNoRpc } from '../utils';
// Disable terminal tests:
// - Web https://github.com/microsoft/vscode/issues/92826
// - Remote https://github.com/microsoft/vscode/issues/96057
((env.uiKind === UIKind.Web || typeof env.remoteName !== 'undefined') ? suite.skip : suite)('vscode API - terminal', () => {
(env.uiKind === UIKind.Web ? suite.skip : suite)('vscode API - terminal', () => {
let extensionContext: ExtensionContext;
suiteSetup(async () => {

View file

@ -185,8 +185,7 @@ import { assertNoRpc } from '../utils';
});
});
// This fails in remote for the same reason as other terminal integration tests https://github.com/microsoft/vscode/issues/96057
((typeof env.remoteName !== 'undefined') ? suite.skip : suite)('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;