11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst assert = require('assert'); 51cb0ef41Sopenharmony_ciconst stream = require('stream'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciprocess.on('uncaughtException', common.mustCall((err) => { 81cb0ef41Sopenharmony_ci assert.strictEqual(err.message, 'kaboom'); 91cb0ef41Sopenharmony_ci})); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciconst writable = new stream.Writable(); 121cb0ef41Sopenharmony_ciconst _err = new Error('kaboom'); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ciwritable._write = (chunk, encoding, cb) => { 151cb0ef41Sopenharmony_ci cb(); 161cb0ef41Sopenharmony_ci}; 171cb0ef41Sopenharmony_ciwritable._final = (cb) => { 181cb0ef41Sopenharmony_ci cb(_err); 191cb0ef41Sopenharmony_ci}; 201cb0ef41Sopenharmony_ci 211cb0ef41Sopenharmony_ciwritable.write('asd'); 221cb0ef41Sopenharmony_ciwritable.end(common.mustCall((err) => { 231cb0ef41Sopenharmony_ci assert.strictEqual(err, _err); 241cb0ef41Sopenharmony_ci})); 25