From 71a28bb177e0bc556c80417ab04e249fdcce91a9 Mon Sep 17 00:00:00 2001 From: David Dias Date: Wed, 7 Feb 2018 05:59:34 +0000 Subject: [PATCH] test: refactor --- test/index.spec.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/index.spec.js b/test/index.spec.js index 6f15f32..040793e 100644 --- a/test/index.spec.js +++ b/test/index.spec.js @@ -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) => {}) -})