summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_callback/app.js
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2018-10-25 15:43:48 +0300
committerSergey Kandaurov <pluknet@nginx.com>2018-10-25 15:43:48 +0300
commit0fdc7c3a55daceb54c034a51b30f06a932236965 (patch)
treee55e5f320d13934f0dfb742b8c0ec19962f0220d /test/node/write_callback/app.js
parent41d3d63758fc3846d5a09afd3b33aac19231942a (diff)
downloadunit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.gz
unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.bz2
Tests: Node.js application tests.
Diffstat (limited to '')
-rwxr-xr-xtest/node/write_callback/app.js10
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);