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/promise_end | |
parent | 37cd6d23b6106f24b1fbaf8c0c898725ef4e6c58 (diff) | |
download | unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.gz unit-aafa4bbaf92cca2968eac19d74c59f7c7711b9dd.tar.bz2 |
Tests: more Node.js tests.
Diffstat (limited to 'test/node/promise_end')
-rwxr-xr-x | test/node/promise_end/app.js | 16 |
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); |