File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export const beforeCoderTest = async (page: Page) => {
23
23
24
24
const shouldLogResponse =
25
25
! response . url ( ) . endsWith ( "/api/v2/deployment/config" ) &&
26
- ! response . url ( ) . endsWith ( "/api/v2/debug/health" ) ;
26
+ ! response . url ( ) . endsWith ( "/api/v2/debug/health?force=false " ) ;
27
27
28
28
let responseText = "" ;
29
29
try {
Original file line number Diff line number Diff line change @@ -30,20 +30,20 @@ class CoderReporter implements Reporter {
30
30
}
31
31
32
32
onStdOut ( chunk : string , test ?: TestCase , _ ?: TestResult ) : void {
33
+ for ( const line of filteredServerLogLines ( chunk ) ) {
34
+ console . log ( `[stdout] ${ line } ` ) ;
35
+ }
33
36
if ( ! test ) {
34
- for ( const line of filteredServerLogLines ( chunk ) ) {
35
- console . log ( `[stdout] ${ line } ` ) ;
36
- }
37
37
return ;
38
38
}
39
39
this . testOutput . get ( test . id ) ! . push ( [ process . stdout , chunk ] ) ;
40
40
}
41
41
42
42
onStdErr ( chunk : string , test ?: TestCase , _ ?: TestResult ) : void {
43
+ for ( const line of filteredServerLogLines ( chunk ) ) {
44
+ console . error ( `[stderr] ${ line } ` ) ;
45
+ }
43
46
if ( ! test ) {
44
- for ( const line of filteredServerLogLines ( chunk ) ) {
45
- console . error ( `[stderr] ${ line } ` ) ;
46
- }
47
47
return ;
48
48
}
49
49
this . testOutput . get ( test . id ) ! . push ( [ process . stderr , chunk ] ) ;
You can’t perform that action at this time.
0 commit comments