UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

19 lines (15 loc) 403 B
'use strict'; const http = require('http'); let ProxyServer = function() { let _this = this; this.called = false; this.lastReq = null; this.httpServer = http.createServer(function(req, res) { _this.called = true; _this.lastReq = req; res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('okay'); }); this.httpServer.listen(3001); }; module.exports = ProxyServer;