Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
542 B
JavaScript
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();
|
|
});
|
|
|