@@ -56,12 +56,12 @@ export class BuildService {
56
56
}
57
57
}
58
58
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 ) ;
60
60
} else if ( args . request === 'attach' ) {
61
61
cliCommand = project . attach ( args . tnsArgs ) ;
62
62
}
63
63
64
- return new Promise < string | number > ( ( res , rej ) => {
64
+ return new Promise < string | number > ( ( res , rej ) => {
65
65
if ( cliCommand . tnsProcess ) {
66
66
this . _tnsProcess = cliCommand . tnsProcess ;
67
67
cliCommand . tnsProcess . stdout . on ( 'data' , ( data ) => { this . _logger . log ( data . toString ( ) ) ; } ) ;
@@ -109,7 +109,7 @@ export class BuildService {
109
109
const teamIdArgIndex = tnsArgs . indexOf ( '--teamId' ) ;
110
110
111
111
if ( teamIdArgIndex > 0 && teamIdArgIndex + 1 < tnsArgs . length ) {
112
- return tnsArgs [ teamIdArgIndex + 1 ] ;
112
+ return tnsArgs [ teamIdArgIndex + 1 ] ;
113
113
}
114
114
}
115
115
@@ -128,7 +128,7 @@ export class BuildService {
128
128
const xcconfigFile = path . join ( appRoot , 'App_Resources/iOS/build.xcconfig' ) ;
129
129
130
130
if ( fs . existsSync ( xcconfigFile ) ) {
131
- const text = fs . readFileSync ( xcconfigFile , { encoding : 'utf8' } ) ;
131
+ const text = fs . readFileSync ( xcconfigFile , { encoding : 'utf8' } ) ;
132
132
let teamId : string ;
133
133
134
134
text . split ( / \r ? \n / ) . forEach ( ( line ) => {
0 commit comments