From 0fdc7c3a55daceb54c034a51b30f06a932236965 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 25 Oct 2018 15:43:48 +0300 Subject: Tests: Node.js application tests. --- test/node/mirror/app.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 test/node/mirror/app.js (limited to 'test/node/mirror') diff --git a/test/node/mirror/app.js b/test/node/mirror/app.js new file mode 100755 index 00000000..abcb87cb --- /dev/null +++ b/test/node/mirror/app.js @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +require('unit-http').createServer(function (req, res) { + let body = ''; + req.on('data', chunk => { + body += chunk.toString(); + }); + req.on('end', () => { + res.writeHead(200, {'Content-Length': Buffer.byteLength(body)}); + res.end(body); + }); +}).listen(7080); -- cgit