We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfa867 commit 644ad0bCopy full SHA for 644ad0b
test/platform-commands.ts
@@ -99,7 +99,9 @@ function createTestInjector() {
99
testInjector.register("commandsServiceProvider", {
100
registerDynamicSubCommands: () => {}
101
});
102
-
+ testInjector.register("commandsService", {
103
+ tryExecuteCommand: () => {}
104
+ });
105
106
return testInjector;
107
}
test/platform-service.ts
@@ -38,6 +38,9 @@ function createTestInjector() {
38
testInjector.register('projectDataService', stubs.ProjectDataService);
39
testInjector.register('prompter', {});
40
testInjector.register('lockfile', stubs.LockFile);
41
42
43
44
45
46
0 commit comments