mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-25 10:32:14 +00:00
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
/* eslint-env mocha */
|
|
'use strict'
|
|
|
|
describe('secio conn upgrade (on TCP)', function () {
|
|
this.timeout(20000)
|
|
|
|
before((done) => { done() })
|
|
after((done) => { done() })
|
|
|
|
it.skip('add', (done) => {})
|
|
it.skip('dial', (done) => {})
|
|
it.skip('tls on a muxed stream (not the full conn)', (done) => {})
|
|
})
|