summaryrefslogblamecommitdiffhomepage
path: root/test/node/promise_handler/app.js
blob: 51c3666b015826713419383e79f5c964cce56edc (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                       
                                      
                                                                         







                                                              
#!/usr/bin/env node

var fs = require('fs');

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

    if (req.headers['x-write-call']) {
        res.writeHead(200, {'Content-Type': 'text/plain'}).write('blah');
    }

    Promise.resolve().then(() => {
        req.on('data', (data) => {
            fs.appendFile(data.toString(), '', function() {});
        });
    });
}).listen(7080);