diff options
Diffstat (limited to 'test/node/loader/es_modules_http_indirect/module.mjs')
-rw-r--r-- | test/node/loader/es_modules_http_indirect/module.mjs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/node/loader/es_modules_http_indirect/module.mjs b/test/node/loader/es_modules_http_indirect/module.mjs new file mode 100644 index 00000000..c7bcfe49 --- /dev/null +++ b/test/node/loader/es_modules_http_indirect/module.mjs @@ -0,0 +1,6 @@ +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); |