@@ -119,7 +119,8 @@ function createTestInjector(projectPath: string, projectName: string, xCode?: IX
119
119
} ) ;
120
120
testInjector . register ( "iosDeviceOperations" , { } ) ;
121
121
testInjector . register ( "pluginsService" , {
122
- getAllInstalledPlugins : ( ) : string [ ] => [ ]
122
+ getAllInstalledPlugins : ( ) : string [ ] => [ ] ,
123
+ getAllProductionPlugins : ( ) : string [ ] => [ ] ,
123
124
} ) ;
124
125
testInjector . register ( "androidProcessService" , { } ) ;
125
126
testInjector . register ( "sysInfo" , {
@@ -323,7 +324,7 @@ describe("Cocoapods support", () => {
323
324
} ;
324
325
const projectData : IProjectData = testInjector . resolve ( "projectData" ) ;
325
326
const pluginsService = testInjector . resolve ( "pluginsService" ) ;
326
- pluginsService . getAllInstalledPlugins = ( ) => {
327
+ pluginsService . getAllProductionPlugins = ( ) => {
327
328
return [ samplePluginData ] ;
328
329
} ;
329
330
const cocoapodsService = testInjector . resolve ( "cocoapodsService" ) ;
@@ -411,7 +412,7 @@ describe("Cocoapods support", () => {
411
412
} ;
412
413
const projectData : IProjectData = testInjector . resolve ( "projectData" ) ;
413
414
const pluginsService = testInjector . resolve ( "pluginsService" ) ;
414
- pluginsService . getAllInstalledPlugins = ( ) => {
415
+ pluginsService . getAllProductionPlugins = ( ) => {
415
416
return [ samplePluginData ] ;
416
417
} ;
417
418
const cocoapodsService = testInjector . resolve ( "cocoapodsService" ) ;
0 commit comments