summaryrefslogtreecommitdiffhomepage
path: root/test/node/promise_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/promise_end/app.js
parent37cd6d23b6106f24b1fbaf8c0c898725ef4e6c58 (diff)
downloadunit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.gz
unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.bz2
Tests: more Node.js tests.
Diffstat (limited to 'test/node/promise_end/app.js')
-rwxr-xr-xtest/node/promise_end/app.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/node/promise_end/app.js b/test/node/promise_end/app.js
new file mode 100755
index 00000000..ed22464c
--- /dev/null
+++ b/test/node/promise_end/app.js
@@ -0,0 +1,16 @@
+#!/usr/bin/env node
+
+var fs = require('fs');
+
+require('unit-http').createServer(function (req, res) {
+ res.write('blah');
+
+ Promise.resolve().then(() => {
+ res.end();
+ });
+
+ req.on('data', (data) => {
+ fs.appendFile('callback', '', function() {});
+ });
+
+}).listen(7080);