summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_before_write_head/app.js
blob: 724b0efb63584ad84326f302ae953840053cc13f (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env node

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