summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-writable-end-cb-uncaugth.js
blob: ab25cac81b0bee21f794a8f30404165b7776066e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';

const common = require('../common');
const assert = require('assert');
const stream = require('stream');

process.on('uncaughtException', common.mustCall((err) => {
  assert.strictEqual(err.message, 'kaboom');
}));

const writable = new stream.Writable();

writable._write = (chunk, encoding, cb) => {
  cb();
};
writable._final = (cb) => {
  cb(new Error('kaboom'));
};

writable.write('asd');
writable.end(common.mustCall((err) => {
  assert.strictEqual(err.message, 'kaboom');
}));