File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -459,7 +459,8 @@ describe("Project Service Tests", () => {
459
459
const projectDataService = testInjector . resolve < IProjectDataService > ( "projectDataService" ) ;
460
460
const projectData : any = {
461
461
projectDir : "projectDir" ,
462
- projectId : "projectId"
462
+ projectId : "projectId" ,
463
+ projectIdentifiers : { android : "projectId" , ios : "projectId" }
463
464
} ;
464
465
465
466
let returnedProjectData : any = null ;
Original file line number Diff line number Diff line change @@ -247,9 +247,10 @@ export class ProjectDataStub implements IProjectData {
247
247
projectDir : string ;
248
248
projectName : string ;
249
249
get platformsDir ( ) : string {
250
- return "" ;
250
+ return this . plafromsDir ;
251
251
}
252
252
set platformsDir ( value ) {
253
+ this . plafromsDir = value ;
253
254
}
254
255
projectFilePath : string ;
255
256
projectIdentifiers : Mobile . IProjectIdentifier ;
@@ -260,6 +261,7 @@ export class ProjectDataStub implements IProjectData {
260
261
devDependencies : IStringDictionary ;
261
262
projectType : string ;
262
263
appResourcesDirectoryPath : string ;
264
+ private plafromsDir : string = "" ;
263
265
public androidManifestPath : string ;
264
266
public infoPlistPath : string ;
265
267
public appGradlePath : string ;
You can’t perform that action at this time.
0 commit comments