diff options
Diffstat (limited to 'test/node/options')
-rw-r--r-- | test/node/options/app.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/node/options/app.js b/test/node/options/app.js new file mode 100644 index 00000000..bc538080 --- /dev/null +++ b/test/node/options/app.js @@ -0,0 +1,4 @@ +require('http').createServer({}, function (req, res) { + res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'}) + .end('Hello World\n'); +}).listen(8080); |