Tests: Node.js application tests.
This commit is contained in:
6
test/node/write_return/app.js
Executable file
6
test/node/write_return/app.js
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require('unit-http').createServer(function (req, res) {
|
||||
res.writeHead(200, {'Content-Type': 'text/plain'});
|
||||
res.end(res.write('body').toString());
|
||||
}).listen(7080);
|
||||
Reference in New Issue
Block a user