File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -51,22 +51,25 @@ class CoderReporter implements Reporter {
51
51
for ( const [ target , chunk ] of output ) {
52
52
target . write ( `${ chunk . replace ( / \n $ / g, "" ) } \n` ) ;
53
53
}
54
- testOutput . delete ( test . id ) ;
55
54
56
55
if ( result . errors . length > 0 ) {
57
56
// eslint-disable-next-line no-console -- Debugging output
58
57
console . log ( "==> Errors" ) ;
59
58
for ( const error of result . errors ) {
60
59
if ( error . location ) {
60
+ // eslint-disable-next-line no-console -- Debugging output
61
61
console . log ( `${ error . location . file } :${ error . location . line } :` ) ;
62
62
}
63
63
if ( error . snippet ) {
64
+ // eslint-disable-next-line no-console -- Debugging output
64
65
console . log ( error . snippet ) ;
65
66
}
66
67
67
68
if ( error . message ) {
69
+ // eslint-disable-next-line no-console -- Debugging output
68
70
console . log ( error . message ) ;
69
71
} else {
72
+ // eslint-disable-next-line no-console -- Debugging output
70
73
console . log ( error ) ;
71
74
}
72
75
}
@@ -81,6 +84,7 @@ class CoderReporter implements Reporter {
81
84
}
82
85
}
83
86
}
87
+ testOutput . delete ( test . id ) ;
84
88
await exportDebugPprof ( test . title ) ;
85
89
}
86
90
You can’t perform that action at this time.
0 commit comments