Alan Shaw 1b9c591da6
fix: listener params and adapter tests
License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
2019-04-02 15:18:30 +01:00

13 lines
230 B
JavaScript

/* eslint-env mocha */
'use strict'
const dial = require('./dial-test')
const listen = require('./listen-test')
module.exports = (common) => {
describe('interface-transport', () => {
dial(common)
listen(common)
})
}