Tests: more Node.js tests.
This commit is contained in:
7
test/node/header_name_valid/app.js
Executable file
7
test/node/header_name_valid/app.js
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require('unit-http').createServer(function (req, res) {
|
||||
res.writeHead(200, {});
|
||||
res.setHeader('@$', 'test');
|
||||
res.end();
|
||||
}).listen(7080);
|
||||
Reference in New Issue
Block a user