mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
|
|
|
|
var pull = require('../')
|
|
require('tape')('through - onEnd', function (t) {
|
|
t.plan(2)
|
|
pull(
|
|
pull.infinite(),
|
|
pull.through(null, function (err) {
|
|
console.log('end')
|
|
t.ok(true)
|
|
process.nextTick(function () {
|
|
t.end()
|
|
})
|
|
}),
|
|
pull.take(10),
|
|
pull.collect(function (err, ary) {
|
|
console.log(ary)
|
|
t.ok(true)
|
|
})
|
|
)
|
|
})
|