File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -2854,11 +2854,7 @@ The corresponding execution ordered event is `'test:dequeue'`.
2854
2854
### Event: ` 'test:stderr' `
2855
2855
2856
2856
* ` data ` {Object}
2857
- * ` column ` {number|undefined} The column number where the test is defined, or
2858
- ` undefined ` if the test was run through the REPL.
2859
2857
* ` file ` {string} The path of the test file.
2860
- * ` line ` {number|undefined} The line number where the test is defined, or
2861
- ` undefined ` if the test was run through the REPL.
2862
2858
* ` message ` {string} The message written to ` stderr ` .
2863
2859
2864
2860
Emitted when a running test writes to ` stderr ` .
@@ -2869,11 +2865,7 @@ defined.
2869
2865
### Event: ` 'test:stdout' `
2870
2866
2871
2867
* ` data ` {Object}
2872
- * ` column ` {number|undefined} The column number where the test is defined, or
2873
- ` undefined ` if the test was run through the REPL.
2874
2868
* ` file ` {string} The path of the test file.
2875
- * ` line ` {number|undefined} The line number where the test is defined, or
2876
- ` undefined ` if the test was run through the REPL.
2877
2869
* ` message ` {string} The message written to ` stdout ` .
2878
2870
2879
2871
Emitted when a running test writes to ` stdout ` .
Original file line number Diff line number Diff line change @@ -123,14 +123,6 @@ class TestsStream extends Readable {
123
123
} ) ;
124
124
}
125
125
126
- stderr ( loc , message ) {
127
- this [ kEmitMessage ] ( 'test:stderr' , { __proto__ : null , message, ...loc } ) ;
128
- }
129
-
130
- stdout ( loc , message ) {
131
- this [ kEmitMessage ] ( 'test:stdout' , { __proto__ : null , message, ...loc } ) ;
132
- }
133
-
134
126
coverage ( nesting , loc , summary ) {
135
127
this [ kEmitMessage ] ( 'test:coverage' , {
136
128
__proto__ : null ,
You can’t perform that action at this time.
0 commit comments