Sha256: 23bcfafb7434d9548325f9dae3931f02892a07340ee37cc1510bb27eb4c30476

Contents?: true

Size: 516 Bytes

Versions: 182

Compression:

Stored size: 516 Bytes

Contents

var test = require('tape')
var through = require('../')

// must emit end before close.

test('end before close', function (assert) {
  var ts = through()
  ts.autoDestroy = false
  var ended = false, 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()
})

Version data entries

182 entries across 155 versions & 21 rubygems

Version Path
pcp-server-ruby-sdk-0.0.6 node_modules/through/test/auto-destroy.js
pcp-server-ruby-sdk-0.1.0 node_modules/through/test/auto-destroy.js
reed_sdk-1.0.1 node_modules/through/test/auto-destroy.js
reed_sdk-1.0.0 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.5 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.4 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.3 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.2 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.1 node_modules/through/test/auto-destroy.js
isomorfeus-puppetmaster-0.5.0 node_modules/through/test/auto-destroy.js
ilog-0.4.1 node_modules/through/test/auto-destroy.js
ilog-0.4.0 node_modules/through/test/auto-destroy.js
ilog-0.3.3 node_modules/through/test/auto-destroy.js
govuk_publishing_components-18.0.0 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.21.0 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.20.0 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.19.1 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.19.0 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.18.0 node_modules/through/test/auto-destroy.js
govuk_publishing_components-17.17.0 node_modules/through/test/auto-destroy.js