File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -126,11 +126,16 @@ function setup(root) {
126
126
}
127
127
} ;
128
128
129
+ const terminationHandler = ( ) => {
130
+ exitHandler ( ) ;
131
+ process . exit ( ) ;
132
+ }
133
+
129
134
process . on ( 'uncaughtException' , exceptionHandler ) ;
130
135
process . on ( 'unhandledRejection' , rejectionHandler ) ;
131
136
process . on ( 'beforeExit' , exitHandler ) ;
132
- process . on ( 'SIGINT' , exitHandler ) ;
133
- process . on ( 'SIGTERM' , exitHandler ) ;
137
+ process . on ( 'SIGINT' , terminationHandler ) ;
138
+ process . on ( 'SIGTERM' , terminationHandler ) ;
134
139
135
140
root . reporter . pipe ( process . stdout ) ;
136
141
root . reporter . version ( ) ;
Original file line number Diff line number Diff line change 2
2
require ( '../common' ) ;
3
3
const assert = require ( 'assert' ) ;
4
4
const { spawnSync } = require ( 'child_process' ) ;
5
+ const { setTimeout } = require ( 'timers/promises' ) ;
5
6
6
7
if ( process . argv [ 2 ] === 'child' ) {
7
8
const test = require ( 'node:test' ) ;
@@ -18,7 +19,7 @@ if (process.argv[2] === 'child') {
18
19
} else if ( process . argv [ 3 ] === 'never_ends' ) {
19
20
assert . strictEqual ( process . argv [ 3 ] , 'never_ends' ) ;
20
21
test ( 'never ending test' , ( ) => {
21
- return new Promise ( ( ) => { } ) ;
22
+ return setTimeout ( 100_000_000 ) ;
22
23
} ) ;
23
24
process . kill ( process . pid , 'SIGINT' ) ;
24
25
}
You can’t perform that action at this time.
0 commit comments