Skip to content

Commit 72626f9

Browse files
niyashiyastargos
authored andcommitted
test: replace forEach with for..of in test-http-perf_hooks.js
PR-URL: #49818 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 379a725 commit 72626f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-http-perf_hooks.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ server.listen(0, common.mustCall(async () => {
5757
process.on('exit', () => {
5858
let numberOfHttpClients = 0;
5959
let numberOfHttpRequests = 0;
60-
entries.forEach((entry) => {
60+
for (const entry of entries) {
6161
assert.strictEqual(entry.entryType, 'http');
6262
assert.strictEqual(typeof entry.startTime, 'number');
6363
assert.strictEqual(typeof entry.duration, 'number');
@@ -72,7 +72,7 @@ process.on('exit', () => {
7272
assert.strictEqual(typeof entry.detail.res.statusCode, 'number');
7373
assert.strictEqual(typeof entry.detail.res.statusMessage, 'string');
7474
assert.strictEqual(typeof entry.detail.res.headers, 'object');
75-
});
75+
}
7676
assert.strictEqual(numberOfHttpClients, 2);
7777
assert.strictEqual(numberOfHttpRequests, 2);
7878
});

0 commit comments

Comments
 (0)