fix: tests

License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
This commit is contained in:
Alan Shaw
2019-04-17 12:34:56 +01:00
parent f674122b6f
commit 24d0a6132a
6 changed files with 14 additions and 17 deletions

View File

@ -195,7 +195,7 @@ describe('dial', () => {
const result = await pipe(s, conn, s)
expect(result).to.be.eql(['hey'])
expect(result).to.be.eql([Buffer.from('hey')])
})
it('dial with IPFS Id', async () => {
@ -205,7 +205,7 @@ describe('dial', () => {
const result = await pipe(s, conn, s)
expect(result).to.be.eql(['hey'])
expect(result).to.be.eql([Buffer.from('hey')])
})
})
@ -228,7 +228,7 @@ describe('dial', () => {
const result = await pipe(s, conn, s)
expect(result).to.be.eql(['hey'])
expect(result).to.be.eql([Buffer.from('hey')])
})
it('dial with IPFS Id', async () => {
@ -241,7 +241,7 @@ describe('dial', () => {
})
const result = await pipe(s, conn, s)
expect(result).to.be.eql(['hey'])
expect(result).to.be.eql([Buffer.from('hey')])
})
})
})