shunter
Version:
A Node.js application built to read JSON and translate it into HTML
24 lines (19 loc) • 390 B
JavaScript
;
var sinon = require('sinon');
module.exports = {
createServer: sinon.stub(),
logger: {
use: sinon.stub()
},
Environment: function() {
this.findAsset = sinon.stub();
this.registerHelper = sinon.stub();
this.appendPath = sinon.stub();
this.prependPath = sinon.stub();
},
Manifest: function() {
this.assets = {
'test.css': 'test-prod-md5.css'
};
}
};