Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit da35b0f

Browse files
magik6kAlan Shaw
authored and
Alan Shaw
committed
fix: fix log.tail by calling add after listening for events (#882)
1 parent e79179c commit da35b0f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/log.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,16 @@ describe('.log', function () {
3131
})
3232

3333
it('.log.tail', (done) => {
34+
let i = setInterval(() => {
35+
ipfs.files.add(Buffer.from('just adding some data to generate logs'))
36+
}, 1000)
37+
3438
const req = ipfs.log.tail((err, res) => {
3539
expect(err).to.not.exist()
3640
expect(req).to.exist()
3741

3842
res.once('data', (obj) => {
43+
clearInterval(i)
3944
expect(obj).to.be.an('object')
4045
done()
4146
})

0 commit comments

Comments
 (0)