Skip to content

Commit 15ada62

Browse files
committed
skip moree tests
1 parent 7f43164 commit 15ada62

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/vscode-api-tests/src/singlefolder-tests/workspace.tasks.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ import { window, tasks, Disposable, TaskDefinition, Task, EventEmitter, CustomEx
204204
});
205205
});
206206

207-
test('Execution from onDidStartTaskProcess is equal to original', () => {
207+
test.skip('Execution from onDidStartTaskProcess is equal to original', () => {
208208
return new Promise(async (resolve, reject) => {
209209
const task = new Task({ type: 'testTask' }, TaskScope.Workspace, 'echo', 'testTask', new ShellExecution('echo', ['hello test']));
210210
let taskExecution: TaskExecution | undefined;
@@ -242,7 +242,7 @@ import { window, tasks, Disposable, TaskDefinition, Task, EventEmitter, CustomEx
242242
});
243243

244244
// https://github.com/microsoft/vscode/issues/100577
245-
test('A CustomExecution task can be fetched and executed', () => {
245+
test.skip('A CustomExecution task can be fetched and executed', () => {
246246
return new Promise(async (resolve, reject) => {
247247
class CustomTerminal implements Pseudoterminal {
248248
private readonly writeEmitter = new EventEmitter<string>();

0 commit comments

Comments
 (0)