2015-09-19 16:46:52 +01:00

9 lines
174 B
JavaScript

module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, pr) {
t.plan(1)
t.ifError(err)
})
})
}