mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-05-20 14:21:20 +00:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
|
/* eslint-env mocha */
|
||
|
|
||
|
describe('transport - utp', function () {
|
||
|
this.timeout(10000)
|
||
|
|
||
|
before((done) => { done() })
|
||
|
|
||
|
it.skip('add', (done) => {})
|
||
|
it.skip('listen', (done) => {})
|
||
|
it.skip('dial', (done) => {})
|
||
|
it.skip('close', (done) => {})
|
||
|
})
|