We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9f719 commit afacc3eCopy full SHA for afacc3e
test/parallel/test-http-response-multiheaders.js
@@ -28,6 +28,7 @@ const norepeat = [
28
'age',
29
'expires'
30
];
31
+const runCount = 2;
32
33
const server = http.createServer(function(req, res) {
34
const num = req.headers['x-num'];
@@ -48,7 +49,6 @@ const server = http.createServer(function(req, res) {
48
49
});
50
51
server.listen(0, common.mustCall(function() {
- const runCount = 2;
52
const countdown = new Countdown(runCount, () => server.close());
53
for (let n = 1; n <= runCount; n++) {
54
// this runs twice, the first time, the server will use
0 commit comments