File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ function RunTestCommandFactory(platform: string) {
66 $testExecutionService : ITestExecutionService ,
77 $projectData : IProjectData ) {
88 $projectData . initializeProjectData ( ) ;
9- const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : this . $options . release } ) ;
9+ const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : $options . release } ) ;
1010 this . execute = ( args : string [ ] ) : Promise < void > => $testExecutionService . startTestRunner ( platform , $projectData , projectFilesConfig ) ;
1111 this . allowedParameters = [ ] ;
1212 } ;
@@ -18,7 +18,7 @@ $injector.registerCommand("dev-test|ios", RunTestCommandFactory('iOS'));
1818function RunKarmaTestCommandFactory ( platform : string ) {
1919 return function RunKarmaTestCommand ( $options : IOptions , $testExecutionService : ITestExecutionService , $projectData : IProjectData ) {
2020 $projectData . initializeProjectData ( ) ;
21- const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : this . $options . release } ) ;
21+ const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : $options . release } ) ;
2222 this . execute = ( args : string [ ] ) : Promise < void > => $testExecutionService . startKarmaServer ( platform , $projectData , projectFilesConfig ) ;
2323 this . allowedParameters = [ ] ;
2424 } ;
You can’t perform that action at this time.
0 commit comments