File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -175,6 +175,7 @@ export function workbenchInstantiationService(): IInstantiationService {
175175 instantiationService . stub ( IHistoryService , 'getHistory' , [ ] ) ;
176176 instantiationService . stub ( IModelService , createMockModelService ( instantiationService ) ) ;
177177 instantiationService . stub ( IFileService , TestFileService ) ;
178+ instantiationService . stub ( IBackupService , TestBackupService ) ;
178179 instantiationService . stub ( ITelemetryService , NullTelemetryService ) ;
179180 instantiationService . stub ( IMessageService , new TestMessageService ( ) ) ;
180181 instantiationService . stub ( IUntitledEditorService , instantiationService . createInstance ( UntitledEditorService ) ) ;
@@ -586,6 +587,12 @@ export const TestFileService = {
586587 }
587588} ;
588589
590+ export const TestBackupService = {
591+ removeWorkspaceBackupPath : function ( ) {
592+ return TPromise . as ( void 0 ) ;
593+ }
594+ } ;
595+
589596export class TestConfigurationService extends EventEmitter implements IConfigurationService {
590597 public _serviceBrand : any ;
591598
You can’t perform that action at this time.
0 commit comments