Skip to content

Commit d478a1c

Browse files
authored
Tests: Fix Karma tests on Node.js 20
Node.js 20 started throwing errors when `writeHead` is called twice on a response. This might have already been invalid before but it wasn't throwing on Node.js 18. Compute the headers object and call `writeHead` once to avoid the issue. Closes gh-5397
1 parent b507c86 commit d478a1c

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

test/middleware-mockserver.cjs

+5-9
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,7 @@ const mocks = {
8080
headers[ "access-control-allow-origin" ] = "*";
8181
}
8282

83-
if ( resp.set ) {
84-
resp.set( headers );
85-
} else {
86-
for ( const key in headers ) {
87-
resp.writeHead( 200, { [ key ]: headers[ key ] } );
88-
}
89-
}
83+
resp.writeHead( 200, headers );
9084

9185
if ( req.query.callback ) {
9286
resp.end( `${ cleanCallback( req.query.callback ) }(${ JSON.stringify( {
@@ -105,12 +99,14 @@ const mocks = {
10599
);
106100
},
107101
json: function( req, resp ) {
102+
const headers = {};
108103
if ( req.query.header ) {
109-
resp.writeHead( 200, { "content-type": "application/json" } );
104+
headers[ "content-type" ] = "application/json";
110105
}
111106
if ( req.query.cors ) {
112-
resp.writeHead( 200, { "access-control-allow-origin": "*" } );
107+
headers[ "access-control-allow-origin" ] = "*";
113108
}
109+
resp.writeHead( 200, headers );
114110
if ( req.query.array ) {
115111
resp.end( JSON.stringify(
116112
[ { name: "John", age: 21 }, { name: "Peter", age: 25 } ]

0 commit comments

Comments
 (0)