Remove console.logs (#47)

This commit is contained in:
ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ 2017-11-24 18:49:58 +01:00 committed by David Dias
parent 6f6f1912b4
commit 8d93b6e586

View File

@ -119,7 +119,6 @@ module.exports = (common) => {
series(count.map((i) => (cb) => {
parallel([
(cb) => listener.once('stream', (stream) => {
console.log('pipe')
expect(stream).to.exist.mark()
pull(stream, stream)
cb()
@ -137,24 +136,13 @@ module.exports = (common) => {
cb(null, val)
}, i * 10)
}),
pull.through((val) => console.log('send', val)),
conn,
pull.through((val) => console.log('recv', val)),
pull.collect((err, data) => {
console.log('end', i)
expect(err).to.not.exist.mark()
expect(data).to.be.eql([Buffer('hello')]).mark()
})
)
})
listener.on('close', () => {
console.log('closed listener')
})
dialer.end(() => {
console.log('CLOSED')
})
})
})
})