diff options
Diffstat (limited to 'test/node/require_shim/unit_http/app.js')
-rw-r--r-- | test/node/require_shim/unit_http/app.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/node/require_shim/unit_http/app.js b/test/node/require_shim/unit_http/app.js deleted file mode 100644 index 9172e44f..00000000 --- a/test/node/require_shim/unit_http/app.js +++ /dev/null @@ -1,4 +0,0 @@ -require("unit-http").createServer(function (req, res) { - res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'}) - .end('Hello World\n'); -}).listen(7080); |