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) {
6
6
$testExecutionService : ITestExecutionService ,
7
7
$projectData : IProjectData ) {
8
8
$projectData . initializeProjectData ( ) ;
9
- const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : this . $options . release } ) ;
9
+ const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : $options . release } ) ;
10
10
this . execute = ( args : string [ ] ) : Promise < void > => $testExecutionService . startTestRunner ( platform , $projectData , projectFilesConfig ) ;
11
11
this . allowedParameters = [ ] ;
12
12
} ;
@@ -18,7 +18,7 @@ $injector.registerCommand("dev-test|ios", RunTestCommandFactory('iOS'));
18
18
function RunKarmaTestCommandFactory ( platform : string ) {
19
19
return function RunKarmaTestCommand ( $options : IOptions , $testExecutionService : ITestExecutionService , $projectData : IProjectData ) {
20
20
$projectData . initializeProjectData ( ) ;
21
- const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : this . $options . release } ) ;
21
+ const projectFilesConfig = helpers . getProjectFilesConfig ( { isReleaseBuild : $options . release } ) ;
22
22
this . execute = ( args : string [ ] ) : Promise < void > => $testExecutionService . startKarmaServer ( platform , $projectData , projectFilesConfig ) ;
23
23
this . allowedParameters = [ ] ;
24
24
} ;
You can’t perform that action at this time.
0 commit comments