js-libp2p-tcp/test/interface-transport.spec.js
Friedel Ziegelmayer 3f4f163f40 refactor: use aegir
2016-05-09 11:14:40 +02:00

24 lines
451 B
JavaScript

/* eslint-env mocha */
'use strict'
const tape = require('tape')
const tests = require('interface-transport/tests')
const TCP = require('../src')
// Not adhering to this interface anymore!
describe.skip('interface-transport', () => {
it('works', (done) => {
const common = {
setup (t, cb) {
cb(null, new TCP())
},
teardown (t, cb) {
cb()
}
}
tape.onFinish(done)
tests(tape, common)
})
})