diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2018-10-25 15:43:48 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2018-10-25 15:43:48 +0300 |
commit | 0fdc7c3a55daceb54c034a51b30f06a932236965 (patch) | |
tree | e55e5f320d13934f0dfb742b8c0ec19962f0220d /test/node/write_callback/app.js | |
parent | 41d3d63758fc3846d5a09afd3b33aac19231942a (diff) | |
download | unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.gz unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.bz2 |
Tests: Node.js application tests.
Diffstat (limited to '')
-rwxr-xr-x | test/node/write_callback/app.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/node/write_callback/app.js b/test/node/write_callback/app.js new file mode 100755 index 00000000..9d4bc1c5 --- /dev/null +++ b/test/node/write_callback/app.js @@ -0,0 +1,10 @@ +#!/usr/bin/env node + +require('unit-http').createServer(function (req, res) { + res.writeHead(200, {'Content-Type': 'text/plain'}); + var a = 'blah'; + res.write('hello', 'utf8', function() { + a = 'world'; + }); + res.end(a); +}).listen(7080); |