unit/test/node/set_header_array/app.js
2018-10-25 15:43:48 +03:00

6 lines
184 B
JavaScript
Executable file

#!/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);