mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-25 10:32:14 +00:00
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
/* eslint-env mocha */
|
|
'use strict'
|
|
|
|
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) => {})
|
|
})
|