Sha256: af9d2a5e00a6b1d28bd967ff524eab3ccf92088a7c00d611fb87657364bf2ae0

Contents?: true

Size: 707 Bytes

Versions: 182

Compression:

Stored size: 707 Bytes

Contents

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

// must emit end before close.

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

test('end only once', function (t) {

  var ts = through()
  var ended = false, closed = false

  ts.on('end', function () {
    t.equal(ended, false)
    ended = true
  })

  ts.queue(null)
  ts.queue(null)
  ts.queue(null)

  ts.resume()

  t.end()
})

Version data entries

182 entries across 155 versions & 21 rubygems

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