make-res.js 170 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 let sinon = require('sinon'); module.exports = function() { let res = {}; res.status = sinon.stub().returns(res); res.json = sinon.stub().returns(res); return res; };