10 lines
231 B
JavaScript
Raw Normal View History

2015-07-10 18:47:43 -07:00
module.exports.all = function (test, common) {
test('see if this works', function (t) {
common.setup(test, function (err, muxer) {
t.ifError(err, 'Should not throw')
// write test here
t.end()
})
})
}