node/test/parallel/test-outgoing-message-destroy.js
cjihrig 94e5b5c77d
http: return this from OutgoingMessage#destroy()
This commit updates OutgoingMessage#destroy() to return `this`
for consistency with other writable streams.

PR-URL: https://github.com/nodejs/node/pull/32789
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2020-05-09 13:57:29 -04:00

14 lines
460 B
JavaScript

'use strict';
// Test that http.OutgoingMessage,prototype.destroy() returns `this`.
require('../common');
const assert = require('assert');
const http = require('http');
const outgoingMessage = new http.OutgoingMessage();
assert.strictEqual(outgoingMessage.destroyed, false);
assert.strictEqual(outgoingMessage.destroy(), outgoingMessage);
assert.strictEqual(outgoingMessage.destroyed, true);
assert.strictEqual(outgoingMessage.destroy(), outgoingMessage);