Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: replace forEach with for..of in test-http-perf_hooks.js
  • Loading branch information
niyashiyas committed Sep 30, 2023
commit 6ab9f877cff04d5f1487c160f00a8d7b914ddea9
2 changes: 1 addition & 1 deletion test/parallel/test-http-perf_hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ process.on('exit', () => {
assert.strictEqual(typeof entry.detail.res.statusCode, 'number');
assert.strictEqual(typeof entry.detail.res.statusMessage, 'string');
assert.strictEqual(typeof entry.detail.res.headers, 'object');
};
}
assert.strictEqual(numberOfHttpClients, 2);
assert.strictEqual(numberOfHttpRequests, 2);
});