mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 02:06:12 +00:00

There is actually no reason to use `assert.doesNotThrow()` in the tests. If a test throws, just let the error bubble up right away instead of first catching it and then rethrowing it. PR-URL: https://github.com/nodejs/node/pull/18669 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
24 lines
512 B
JavaScript
24 lines
512 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer((req, res) => {
|
|
res.setHeader('header1', 1);
|
|
res.write('abc');
|
|
common.expectsError(
|
|
() => res.setHeader('header2', 2),
|
|
{
|
|
code: 'ERR_HTTP_HEADERS_SENT',
|
|
type: Error,
|
|
message: 'Cannot set headers after they are sent to the client'
|
|
}
|
|
);
|
|
res.end();
|
|
});
|
|
|
|
server.listen(0, () => {
|
|
http.get({ port: server.address().port }, () => {
|
|
server.close();
|
|
});
|
|
});
|