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





                                                                          
#!/usr/bin/env node

require('unit-http').createServer(function (req, res) {
    res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six']);
    res.end();
}).listen(7080);