summaryrefslogtreecommitdiffhomepage
path: root/test/node/require_shim/es_modules_http/app.mjs
diff options
context:
space:
mode:
authorOisin Canty <o.canty@f5.com>2021-05-24 09:01:42 +0000
committerOisin Canty <o.canty@f5.com>2021-05-24 09:01:42 +0000
commitc160ea11e4ece4db52731ac8b83dd09ca2d1ef11 (patch)
treeebfd605f6e93a05b65bae5c327b47a1a764a8d63 /test/node/require_shim/es_modules_http/app.mjs
parentd6439002371d0bc73183c9d3d28df4f62ce0b972 (diff)
downloadunit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.gz
unit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.bz2
Node.js: renamed "require_shim" to "loader".
Diffstat (limited to 'test/node/require_shim/es_modules_http/app.mjs')
-rw-r--r--test/node/require_shim/es_modules_http/app.mjs6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/node/require_shim/es_modules_http/app.mjs b/test/node/require_shim/es_modules_http/app.mjs
deleted file mode 100644
index c7bcfe49..00000000
--- a/test/node/require_shim/es_modules_http/app.mjs
+++ /dev/null
@@ -1,6 +0,0 @@
-import http from "http"
-
-http.createServer(function (req, res) {
- res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
- .end('Hello World\n');
-}).listen(7080);