summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_before_write_head/app.js
blob: 9fe3a58d86665f201fb6ee10c556e96ba7f85a0a (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'});
}).listen(7080);