File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,6 @@ export function getHttpProxyConfiguration(requestUrl?: string): task.ProxyConfig
463
463
//-----------------------------------------------------
464
464
// Http Certificate Helper
465
465
//-----------------------------------------------------
466
- export function getHttpCertConfiguration ( ) : task . ProxyConfiguration | null {
466
+ export function getHttpCertConfiguration ( ) : task . CertConfiguration | null {
467
467
return null
468
468
}
Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ export class MockTestRunner {
37
37
}
38
38
39
39
public stdOutContained ( message : string ) : boolean {
40
- return this . stdout . indexOf ( message . trim ( ) ) > 0 ;
40
+ return this . stdout . indexOf ( message ) > 0 ;
41
41
}
42
42
43
43
public stdErrContained ( message : string ) : boolean {
44
- return this . stderr . indexOf ( message . trim ( ) ) > 0 ;
44
+ return this . stderr . indexOf ( message ) > 0 ;
45
45
}
46
46
47
47
public run ( ) : void {
Original file line number Diff line number Diff line change @@ -804,6 +804,10 @@ export class ToolRunner extends events.EventEmitter {
804
804
cp . stdout . on ( 'data' , ( data : Buffer ) => {
805
805
this . emit ( 'stdout' , data ) ;
806
806
807
+ if ( ! optionsNonNull . silent ) {
808
+ optionsNonNull . outStream . write ( data ) ;
809
+ }
810
+
807
811
this . _processLineBuffer ( data , stdbuffer , ( line : string ) => {
808
812
this . emit ( 'stdline' , line ) ;
809
813
} ) ;
You can’t perform that action at this time.
0 commit comments