@@ -18,7 +18,7 @@ import { window, tasks, Disposable, TaskDefinition, Task, EventEmitter, CustomEx
1818 disposables . length = 0 ;
1919 } ) ;
2020
21- test . skip ( 'CustomExecution task should start and shutdown successfully' , ( done ) => {
21+ test ( 'CustomExecution task should start and shutdown successfully' , ( done ) => {
2222 interface CustomTestingTaskDefinition extends TaskDefinition {
2323 /**
2424 * One of the task properties. This can be used to customize the task in the tasks.json
@@ -110,7 +110,7 @@ import { window, tasks, Disposable, TaskDefinition, Task, EventEmitter, CustomEx
110110 commands . executeCommand ( 'workbench.action.tasks.runTask' , `${ taskType } : ${ taskName } ` ) ;
111111 } ) ;
112112
113- test . skip ( 'sync CustomExecution task should flush all data on close' , ( done ) => {
113+ test ( 'sync CustomExecution task should flush all data on close' , ( done ) => {
114114 interface CustomTestingTaskDefinition extends TaskDefinition {
115115 /**
116116 * One of the task properties. This can be used to customize the task in the tasks.json
@@ -222,7 +222,7 @@ import { window, tasks, Disposable, TaskDefinition, Task, EventEmitter, CustomEx
222222 } ) ;
223223
224224 // https://github.com/microsoft/vscode/issues/100577
225- test . skip ( 'A CustomExecution task can be fetched and executed' , ( ) => {
225+ test ( 'A CustomExecution task can be fetched and executed' , ( ) => {
226226 return new Promise ( async ( resolve , reject ) => {
227227 class CustomTerminal implements Pseudoterminal {
228228 private readonly writeEmitter = new EventEmitter < string > ( ) ;
0 commit comments