mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-25 10:32:14 +00:00
15 lines
441 B
JavaScript
15 lines
441 B
JavaScript
/* eslint-env mocha */
|
|
|
|
describe('stream muxing with multiplex (on TCP)', function () {
|
|
this.timeout(20000)
|
|
|
|
before((done) => { done() })
|
|
after((done) => { done() })
|
|
|
|
it.skip('add', (done) => {})
|
|
it.skip('handle + dial on protocol', (done) => {})
|
|
it.skip('dial to warm conn', (done) => {})
|
|
it.skip('dial on protocol, reuse warmed conn', (done) => {})
|
|
it.skip('enable identify to reuse incomming muxed conn', (done) => {})
|
|
})
|