File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,13 @@ class AppStore {
71
71
return this . iOSPlatformData ;
72
72
}
73
73
} ,
74
+ "applePortalSessionService" : {
75
+ createUserSession : ( ) => {
76
+ return {
77
+ areCredentialsValid : true
78
+ } ;
79
+ }
80
+ }
74
81
}
75
82
} ) ;
76
83
@@ -120,8 +127,8 @@ class AppStore {
120
127
this . itmsTransporterService . upload = ( options : IITMSData ) => {
121
128
this . itmsTransporterServiceUploadCalls ++ ;
122
129
chai . assert . equal ( options . ipaFilePath , "/Users/person/git/MyProject/platforms/ios/archive/MyProject.ipa" ) ;
123
- chai . assert . equal ( options . username , AppStore . itunesconnect . user ) ;
124
- chai . assert . equal ( options . password , AppStore . itunesconnect . pass ) ;
130
+ chai . assert . equal ( options . credentials . username , AppStore . itunesconnect . user ) ;
131
+ chai . assert . equal ( options . credentials . password , AppStore . itunesconnect . pass ) ;
125
132
chai . assert . equal ( options . verboseLogging , false ) ;
126
133
return Promise . resolve ( ) ;
127
134
} ;
You can’t perform that action at this time.
0 commit comments