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/write_buffer/app.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 test/node/write_buffer/app.js (limited to 'test/node/write_buffer') diff --git a/test/node/write_buffer/app.js b/test/node/write_buffer/app.js new file mode 100755 index 00000000..f41de2a1 --- /dev/null +++ b/test/node/write_buffer/app.js @@ -0,0 +1,6 @@ +#!/usr/bin/env node + +require('unit-http').createServer(function (req, res) { + res.writeHead(200, {'Content-Type': 'text/plain'}); + res.end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72])); +}).listen(7080); -- cgit