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

require('unit-http').createServer(function (req, res) {
    res.end();
    res.end();
}).listen(7080);