@@ -159,6 +159,10 @@ function createTestInjector(projectPath: string, projectName: string, xCode?: IX
159
159
removeExtensions : ( ) => { /* */ } ,
160
160
addExtensionsFromPath : ( ) => Promise . resolve ( )
161
161
} ) ;
162
+ testInjector . register ( "iOSWatchAppService" , {
163
+ removeWatchApp : ( ) => { /* */ } ,
164
+ addWatchAppFromPath : ( ) => Promise . resolve ( )
165
+ } ) ;
162
166
return testInjector ;
163
167
}
164
168
@@ -1064,6 +1068,7 @@ describe("iOS Project Service Signing", () => {
1064
1068
stack . push ( { targetName, manualSigning } ) ;
1065
1069
} ,
1066
1070
setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1071
+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
1067
1072
setManualSigningStyleByTargetKey : ( ) => ( { } )
1068
1073
} ;
1069
1074
} ;
@@ -1085,6 +1090,7 @@ describe("iOS Project Service Signing", () => {
1085
1090
stack . push ( { targetName, manualSigning } ) ;
1086
1091
} ,
1087
1092
setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1093
+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
1088
1094
setManualSigningStyleByTargetKey : ( ) => ( { } )
1089
1095
} ;
1090
1096
} ;
@@ -1106,6 +1112,7 @@ describe("iOS Project Service Signing", () => {
1106
1112
stack . push ( { targetName, manualSigning } ) ;
1107
1113
} ,
1108
1114
setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1115
+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
1109
1116
setManualSigningStyleByTargetKey : ( ) => ( { } )
1110
1117
} ;
1111
1118
} ;
@@ -1296,6 +1303,7 @@ describe("buildProject", () => {
1296
1303
getSigning : ( ) => ( { } ) ,
1297
1304
setAutomaticSigningStyle : ( ) => ( { } ) ,
1298
1305
setAutomaticSigningStyleByTargetProductType : ( ) => ( { } ) ,
1306
+ setAutomaticSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
1299
1307
setAutomaticSigningStyleByTargetKey : ( ) => ( { } ) ,
1300
1308
save : ( ) => ( { } )
1301
1309
} )
0 commit comments