Compare commits

...

3 Commits

Author SHA1 Message Date
d194ff0a3b chore: release version v0.11.5 2018-02-07 05:59:57 +00:00
41ca37e9ce chore: update contributors 2018-02-07 05:59:56 +00:00
71a28bb177 test: refactor 2018-02-07 05:59:34 +00:00
3 changed files with 6 additions and 13 deletions

View File

@ -1,3 +1,8 @@
<a name="0.11.5"></a>
## [0.11.5](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.4...v0.11.5) (2018-02-07)
<a name="0.11.4"></a>
## [0.11.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.3...v0.11.4) (2018-02-07)

View File

@ -1,6 +1,6 @@
{
"name": "libp2p-tcp",
"version": "0.11.4",
"version": "0.11.5",
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
"main": "src/index.js",
"scripts": {

View File

@ -11,13 +11,6 @@ const net = require('net')
const multiaddr = require('multiaddr')
const isCI = process.env.CI
describe('instantiate the transport', () => {
it('create', () => {
const tcp = new TCP()
expect(tcp).to.exist()
})
})
describe('listen', () => {
let tcp
@ -265,8 +258,3 @@ describe('dial', () => {
)
})
})
describe.skip('turbolence', () => {
it('dialer - emits error on the other end is terminated abruptly', (done) => {})
it('listener - emits error on the other end is terminated abruptly', (done) => {})
})