summaryrefslogtreecommitdiffhomepage
path: root/test/node/double_end/app.js
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-12-11 18:30:58 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-12-11 18:30:58 +0300
commitaafa4bbaf92cca2968eac19d74c59f7c7711b9dd (patch)
tree6cda981350e8b3039c32f63e5e9bffdcbf6f8d13 /test/node/double_end/app.js
parent37cd6d23b6106f24b1fbaf8c0c898725ef4e6c58 (diff)
downloadunit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.gz
unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.bz2
Tests: more Node.js tests.
Diffstat (limited to 'test/node/double_end/app.js')
-rwxr-xr-xtest/node/double_end/app.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/node/double_end/app.js b/test/node/double_end/app.js
new file mode 100755
index 00000000..d8280917
--- /dev/null
+++ b/test/node/double_end/app.js
@@ -0,0 +1,6 @@
+#!/usr/bin/env node
+
+require('unit-http').createServer(function (req, res) {
+ res.end();
+ res.end();
+}).listen(7080);