9 lines
174 B
JavaScript
Raw Normal View History

2015-09-19 16:46:52 +01:00
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, pr) {
t.plan(1)
t.ifError(err)
})
})
}