summaryrefslogblamecommitdiffhomepage
path: root/test/node/status_message/app.js
blob: 4f3b064a818d941dff57e0c2b53207f1404c7c32 (plain) (tree)
1
2
3
4
5
6





                                                               
#!/usr/bin/env node

require('unit-http').createServer(function (req, res) {
    res.writeHead(200, 'blah', {'Content-Type': 'text/plain'});
    res.end();
}).listen(7080);