UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

14 lines (11 loc) 233 B
'use strict'; var MockProxy = function() { this.called = false; this.lastReq = null; }; module.exports = MockProxy; MockProxy.prototype.handler = function(req, res) { this.called = true; this.lastReq = req; res.end(); };