提交 5fdbc821 编写于 作者: D Daniel Imms

Re-enable task and term test

上级 8fe29a7c
......@@ -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 () => {
......
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册