We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c1158 commit 3a0cb8fCopy full SHA for 3a0cb8f
test/parallel/test-http-end-throw-socket-handling.js
@@ -1,5 +1,6 @@
1
'use strict';
2
const common = require('../common');
3
+const Countdown = require('../common/countdown');
4
5
// Make sure that throwing in 'end' handler doesn't lock
6
// up the socket forever.
@@ -8,10 +9,10 @@ const common = require('../common');
8
9
// the same, we should not be so brittle and easily broken.
10
11
const http = require('http');
12
+const countdown = new Countdown(10, () => server.close());
13
-let n = 0;
14
const server = http.createServer((req, res) => {
- if (++n === 10) server.close();
15
+ countdown.dec();
16
res.end('ok');
17
});
18
0 commit comments