michangarrito/apps/backend/node_modules/@ljharb/through/test/auto-destroy.js
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

33 lines
542 B
JavaScript

'use strict';
var test = require('tape');
var through = require('../');
// must emit end before close.
test('end before close', function (assert) {
var ts = through(null, null, { autoDestroy: false });
var ended = false;
var closed = false;
ts.on('end', function () {
assert.ok(!closed);
ended = true;
});
ts.on('close', function () {
assert.ok(ended);
closed = true;
});
ts.write(1);
ts.write(2);
ts.write(3);
ts.end();
assert.ok(ended);
assert.notOk(closed);
ts.destroy();
assert.ok(closed);
assert.end();
});