@@ -67,7 +67,7 @@ function createTestInjector(projectPath: string, projectName: string, xcode?: IX
67
67
testInjector . register ( "iOSEntitlementsService" , IOSEntitlementsService ) ;
68
68
testInjector . register ( "logger" , LoggerLib . Logger ) ;
69
69
testInjector . register ( "options" , OptionsLib . Options ) ;
70
- var projectData = Object . assign ( { } , ProjectDataStub , {
70
+ const projectData = Object . assign ( { } , ProjectDataStub , {
71
71
platformsDir : path . join ( projectPath , "platforms" ) ,
72
72
projectName : projectName ,
73
73
projectPath : projectPath ,
@@ -347,7 +347,7 @@ describe("Cocoapods support", () => {
347
347
348
348
const testInjector = createTestInjector ( projectPath , projectName ) ;
349
349
const fs : IFileSystem = testInjector . resolve ( "fs" ) ;
350
- const cocoapodsService = testInjector . resolve ( "cocoapodsService" )
350
+ const cocoapodsService = testInjector . resolve ( "cocoapodsService" ) ;
351
351
352
352
const packageJsonData = {
353
353
"name" : "myProject" ,
@@ -387,8 +387,8 @@ describe("Cocoapods support", () => {
387
387
const projectPodfilePath = path . join ( platformsFolderPath , "Podfile" ) ;
388
388
assert . isTrue ( fs . exists ( projectPodfilePath ) ) ;
389
389
390
- let actualProjectPodfileContent = fs . readText ( projectPodfilePath ) ;
391
- let expectedProjectPodfileContent = [ "use_frameworks!\n" ,
390
+ const actualProjectPodfileContent = fs . readText ( projectPodfilePath ) ;
391
+ const expectedProjectPodfileContent = [ "use_frameworks!\n" ,
392
392
`target "${ projectName } " do` ,
393
393
`# Begin Podfile - ${ basePodfilePath } ` ,
394
394
`${ pluginPodfileContent } ` ,
@@ -602,7 +602,7 @@ describe("Source code support", () => {
602
602
await iOSProjectService . prepareNativeSourceCode ( "src" , platformSpecificAppResourcesPath , projectData ) ;
603
603
604
604
return pbxProj ;
605
- }
605
+ } ;
606
606
607
607
const preparePluginWithFiles = async ( files : string [ ] , prepareMethodToCall : string ) => {
608
608
// Arrange
0 commit comments