2019-10-18 13:50:39 +02:00

11 lines
191 B
JavaScript

'use strict'
module.exports.all = function (test, common) {
test('test', function (t) {
common.setup(test, function (err, pr) {
if (err) {}
common.teardown()
})
})
}