diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-12-11 18:30:58 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-12-11 18:30:58 +0300 |
commit | aafa4bbaf92cca2968eac19d74c59f7c7711b9dd (patch) | |
tree | 6cda981350e8b3039c32f63e5e9bffdcbf6f8d13 /test/node/double_end/app.js | |
parent | 37cd6d23b6106f24b1fbaf8c0c898725ef4e6c58 (diff) | |
download | unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.gz unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.bz2 |
Tests: more Node.js tests.
Diffstat (limited to 'test/node/double_end/app.js')
-rwxr-xr-x | test/node/double_end/app.js | 6 |
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); |