@@ -159,6 +159,10 @@ function createTestInjector(projectPath: string, projectName: string, xCode?: IX
159159 removeExtensions : ( ) => { /* */ } ,
160160 addExtensionsFromPath : ( ) => Promise . resolve ( )
161161 } ) ;
162+ testInjector . register ( "iOSWatchAppService" , {
163+ removeWatchApp : ( ) => { /* */ } ,
164+ addWatchAppFromPath : ( ) => Promise . resolve ( )
165+ } ) ;
162166 return testInjector ;
163167}
164168
@@ -1064,6 +1068,7 @@ describe("iOS Project Service Signing", () => {
10641068 stack . push ( { targetName, manualSigning } ) ;
10651069 } ,
10661070 setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1071+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
10671072 setManualSigningStyleByTargetKey : ( ) => ( { } )
10681073 } ;
10691074 } ;
@@ -1085,6 +1090,7 @@ describe("iOS Project Service Signing", () => {
10851090 stack . push ( { targetName, manualSigning } ) ;
10861091 } ,
10871092 setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1093+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
10881094 setManualSigningStyleByTargetKey : ( ) => ( { } )
10891095 } ;
10901096 } ;
@@ -1106,6 +1112,7 @@ describe("iOS Project Service Signing", () => {
11061112 stack . push ( { targetName, manualSigning } ) ;
11071113 } ,
11081114 setManualSigningStyleByTargetProductType : ( ) => ( { } ) ,
1115+ setManualSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
11091116 setManualSigningStyleByTargetKey : ( ) => ( { } )
11101117 } ;
11111118 } ;
@@ -1296,6 +1303,7 @@ describe("buildProject", () => {
12961303 getSigning : ( ) => ( { } ) ,
12971304 setAutomaticSigningStyle : ( ) => ( { } ) ,
12981305 setAutomaticSigningStyleByTargetProductType : ( ) => ( { } ) ,
1306+ setAutomaticSigningStyleByTargetProductTypesList : ( ) => ( { } ) ,
12991307 setAutomaticSigningStyleByTargetKey : ( ) => ( { } ) ,
13001308 save : ( ) => ( { } )
13011309 } )
0 commit comments