@@ -56,12 +56,12 @@ export class BuildService {
5656 }
5757 }
5858
59- cliCommand = project . debug ( { stopOnEntry : args . stopOnEntry , watch : args . watch } , tnsArgs ) ;
59+ cliCommand = project . debug ( { stopOnEntry : args . stopOnEntry , watch : args . watch , launchTests : args . launchTests } , tnsArgs ) ;
6060 } else if ( args . request === 'attach' ) {
6161 cliCommand = project . attach ( args . tnsArgs ) ;
6262 }
6363
64- return new Promise < string | number > ( ( res , rej ) => {
64+ return new Promise < string | number > ( ( res , rej ) => {
6565 if ( cliCommand . tnsProcess ) {
6666 this . _tnsProcess = cliCommand . tnsProcess ;
6767 cliCommand . tnsProcess . stdout . on ( 'data' , ( data ) => { this . _logger . log ( data . toString ( ) ) ; } ) ;
@@ -109,7 +109,7 @@ export class BuildService {
109109 const teamIdArgIndex = tnsArgs . indexOf ( '--teamId' ) ;
110110
111111 if ( teamIdArgIndex > 0 && teamIdArgIndex + 1 < tnsArgs . length ) {
112- return tnsArgs [ teamIdArgIndex + 1 ] ;
112+ return tnsArgs [ teamIdArgIndex + 1 ] ;
113113 }
114114 }
115115
@@ -128,7 +128,7 @@ export class BuildService {
128128 const xcconfigFile = path . join ( appRoot , 'App_Resources/iOS/build.xcconfig' ) ;
129129
130130 if ( fs . existsSync ( xcconfigFile ) ) {
131- const text = fs . readFileSync ( xcconfigFile , { encoding : 'utf8' } ) ;
131+ const text = fs . readFileSync ( xcconfigFile , { encoding : 'utf8' } ) ;
132132 let teamId : string ;
133133
134134 text . split ( / \r ? \n / ) . forEach ( ( line ) => {
0 commit comments