11 lines
191 B
JavaScript
Raw Normal View History

2018-02-20 11:25:46 +00:00
'use strict'
module.exports.all = function (test, common) {
test('test', function (t) {
common.setup(test, function (err, pr) {
if (err) {}
common.teardown()
})
})
}