diff --git a/tests/tests_hugo/index.html b/tests/tests_hugo/pure_node/index.html
similarity index 100%
rename from tests/tests_hugo/index.html
rename to tests/tests_hugo/pure_node/index.html
diff --git a/tests/tests_hugo/pure_node/server.js b/tests/tests_hugo/pure_node/server.js
new file mode 100644
index 00000000..6b58f57c
--- /dev/null
+++ b/tests/tests_hugo/pure_node/server.js
@@ -0,0 +1,38 @@
+const http = require('http')
+const fs = require('fs')
+const url = require('url')
+
+const sendMyFile = (file, res) => {
+ fs.readFile(file, (err, data) => {
+ if (!err) {
+ res.writeHead(200, {
+ 'content-type': 'text/html; charset=utf-8'
+ })
+ res.end(data)
+ }
+ else
+ res.writeHead(404).end('file not found')
+ })
+}
+
+const server = http.createServer((req, res) => {
+
+ let pathName = url.parse(req.url).pathname
+
+ if (req.method === "GET") {
+ if (pathName === "/")
+ sendMyFile("index.html", res)
+ else if (pathName === "/index.html")
+ sendMyFile("index.html", res)
+ else
+ res.writeHead(404).end('wrong url')
+ }
+})
+
+server.get('/', (req, res) => {
+ res.sendFile(__dirname + "/" + "index.html")
+})
+
+const port = 3000
+server.listen(port, console.log(`listening on port ${port} with express`));
+
diff --git a/tests/tests_hugo/server.js.bak b/tests/tests_hugo/pure_node/server.js.bak
similarity index 100%
rename from tests/tests_hugo/server.js.bak
rename to tests/tests_hugo/pure_node/server.js.bak
diff --git a/tests/tests_hugo/server.js b/tests/tests_hugo/server.js
deleted file mode 100644
index 2115c49e..00000000
--- a/tests/tests_hugo/server.js
+++ /dev/null
@@ -1,41 +0,0 @@
-//const http = require('http')
-//const fs = require('fs')
-//const url = require('url')
-
-const express = require('express')
-const server = express()
-
-server.get('/', (req, res) => {
- res.sendFile(__dirname + "/" + "index.html")
-})
-
-//const sendMyFile = (file, res) => {
-// fs.readFile(file, (err, data) => {
-// if (!err) {
-// res.writeHead(200, {
-// 'content-type': 'text/html; charset=utf-8'
-// })
-// res.end(data)
-// }
-// else
-// res.writeHead(404).end('file not found')
-// })
-//}
-//
-//const server = http.createServer((req, res) => {
-//
-// let pathName = url.parse(req.url).pathname
-//
-// if (req.method === "GET") {
-// if (pathName === "/")
-// sendMyFile("index.html", res)
-// else if (pathName === "/index.html")
-// sendMyFile("index.html", res)
-// else
-// res.writeHead(404).end('wrong url')
-// }
-//})
-
-const port = 3000
-server.listen(port, console.log(`listening on port ${port} with express`));
-
diff --git a/tests/tests_hugo/with_express/index.html b/tests/tests_hugo/with_express/index.html
new file mode 100644
index 00000000..64ad255d
--- /dev/null
+++ b/tests/tests_hugo/with_express/index.html
@@ -0,0 +1,9 @@
+
+
+
+ title
+
+
+ hello world
+
+
diff --git a/tests/tests_hugo/node_modules/.bin/mime b/tests/tests_hugo/with_express/node_modules/.bin/mime
similarity index 100%
rename from tests/tests_hugo/node_modules/.bin/mime
rename to tests/tests_hugo/with_express/node_modules/.bin/mime
diff --git a/tests/tests_hugo/node_modules/accepts/HISTORY.md b/tests/tests_hugo/with_express/node_modules/accepts/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/accepts/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/accepts/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/accepts/LICENSE b/tests/tests_hugo/with_express/node_modules/accepts/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/accepts/LICENSE
rename to tests/tests_hugo/with_express/node_modules/accepts/LICENSE
diff --git a/tests/tests_hugo/node_modules/accepts/README.md b/tests/tests_hugo/with_express/node_modules/accepts/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/accepts/README.md
rename to tests/tests_hugo/with_express/node_modules/accepts/README.md
diff --git a/tests/tests_hugo/node_modules/accepts/index.js b/tests/tests_hugo/with_express/node_modules/accepts/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/accepts/index.js
rename to tests/tests_hugo/with_express/node_modules/accepts/index.js
diff --git a/tests/tests_hugo/node_modules/accepts/package.json b/tests/tests_hugo/with_express/node_modules/accepts/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/accepts/package.json
rename to tests/tests_hugo/with_express/node_modules/accepts/package.json
diff --git a/tests/tests_hugo/node_modules/array-flatten/LICENSE b/tests/tests_hugo/with_express/node_modules/array-flatten/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/array-flatten/LICENSE
rename to tests/tests_hugo/with_express/node_modules/array-flatten/LICENSE
diff --git a/tests/tests_hugo/node_modules/array-flatten/README.md b/tests/tests_hugo/with_express/node_modules/array-flatten/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/array-flatten/README.md
rename to tests/tests_hugo/with_express/node_modules/array-flatten/README.md
diff --git a/tests/tests_hugo/node_modules/array-flatten/array-flatten.js b/tests/tests_hugo/with_express/node_modules/array-flatten/array-flatten.js
similarity index 100%
rename from tests/tests_hugo/node_modules/array-flatten/array-flatten.js
rename to tests/tests_hugo/with_express/node_modules/array-flatten/array-flatten.js
diff --git a/tests/tests_hugo/node_modules/array-flatten/package.json b/tests/tests_hugo/with_express/node_modules/array-flatten/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/array-flatten/package.json
rename to tests/tests_hugo/with_express/node_modules/array-flatten/package.json
diff --git a/tests/tests_hugo/node_modules/body-parser/HISTORY.md b/tests/tests_hugo/with_express/node_modules/body-parser/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/body-parser/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/body-parser/LICENSE b/tests/tests_hugo/with_express/node_modules/body-parser/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/LICENSE
rename to tests/tests_hugo/with_express/node_modules/body-parser/LICENSE
diff --git a/tests/tests_hugo/node_modules/body-parser/README.md b/tests/tests_hugo/with_express/node_modules/body-parser/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/README.md
rename to tests/tests_hugo/with_express/node_modules/body-parser/README.md
diff --git a/tests/tests_hugo/node_modules/body-parser/SECURITY.md b/tests/tests_hugo/with_express/node_modules/body-parser/SECURITY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/SECURITY.md
rename to tests/tests_hugo/with_express/node_modules/body-parser/SECURITY.md
diff --git a/tests/tests_hugo/node_modules/body-parser/index.js b/tests/tests_hugo/with_express/node_modules/body-parser/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/index.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/index.js
diff --git a/tests/tests_hugo/node_modules/body-parser/lib/read.js b/tests/tests_hugo/with_express/node_modules/body-parser/lib/read.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/lib/read.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/lib/read.js
diff --git a/tests/tests_hugo/node_modules/body-parser/lib/types/json.js b/tests/tests_hugo/with_express/node_modules/body-parser/lib/types/json.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/lib/types/json.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/lib/types/json.js
diff --git a/tests/tests_hugo/node_modules/body-parser/lib/types/raw.js b/tests/tests_hugo/with_express/node_modules/body-parser/lib/types/raw.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/lib/types/raw.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/lib/types/raw.js
diff --git a/tests/tests_hugo/node_modules/body-parser/lib/types/text.js b/tests/tests_hugo/with_express/node_modules/body-parser/lib/types/text.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/lib/types/text.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/lib/types/text.js
diff --git a/tests/tests_hugo/node_modules/body-parser/lib/types/urlencoded.js b/tests/tests_hugo/with_express/node_modules/body-parser/lib/types/urlencoded.js
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/lib/types/urlencoded.js
rename to tests/tests_hugo/with_express/node_modules/body-parser/lib/types/urlencoded.js
diff --git a/tests/tests_hugo/node_modules/body-parser/package.json b/tests/tests_hugo/with_express/node_modules/body-parser/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/body-parser/package.json
rename to tests/tests_hugo/with_express/node_modules/body-parser/package.json
diff --git a/tests/tests_hugo/node_modules/bytes/History.md b/tests/tests_hugo/with_express/node_modules/bytes/History.md
similarity index 100%
rename from tests/tests_hugo/node_modules/bytes/History.md
rename to tests/tests_hugo/with_express/node_modules/bytes/History.md
diff --git a/tests/tests_hugo/node_modules/bytes/LICENSE b/tests/tests_hugo/with_express/node_modules/bytes/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/bytes/LICENSE
rename to tests/tests_hugo/with_express/node_modules/bytes/LICENSE
diff --git a/tests/tests_hugo/node_modules/bytes/Readme.md b/tests/tests_hugo/with_express/node_modules/bytes/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/bytes/Readme.md
rename to tests/tests_hugo/with_express/node_modules/bytes/Readme.md
diff --git a/tests/tests_hugo/node_modules/bytes/index.js b/tests/tests_hugo/with_express/node_modules/bytes/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/bytes/index.js
rename to tests/tests_hugo/with_express/node_modules/bytes/index.js
diff --git a/tests/tests_hugo/node_modules/bytes/package.json b/tests/tests_hugo/with_express/node_modules/bytes/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/bytes/package.json
rename to tests/tests_hugo/with_express/node_modules/bytes/package.json
diff --git a/tests/tests_hugo/node_modules/call-bind/.eslintignore b/tests/tests_hugo/with_express/node_modules/call-bind/.eslintignore
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/.eslintignore
rename to tests/tests_hugo/with_express/node_modules/call-bind/.eslintignore
diff --git a/tests/tests_hugo/node_modules/call-bind/.eslintrc b/tests/tests_hugo/with_express/node_modules/call-bind/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/call-bind/.eslintrc
diff --git a/tests/tests_hugo/node_modules/call-bind/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/call-bind/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/call-bind/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/call-bind/.nycrc b/tests/tests_hugo/with_express/node_modules/call-bind/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/.nycrc
rename to tests/tests_hugo/with_express/node_modules/call-bind/.nycrc
diff --git a/tests/tests_hugo/node_modules/call-bind/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/call-bind/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/call-bind/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/call-bind/LICENSE b/tests/tests_hugo/with_express/node_modules/call-bind/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/LICENSE
rename to tests/tests_hugo/with_express/node_modules/call-bind/LICENSE
diff --git a/tests/tests_hugo/node_modules/call-bind/README.md b/tests/tests_hugo/with_express/node_modules/call-bind/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/README.md
rename to tests/tests_hugo/with_express/node_modules/call-bind/README.md
diff --git a/tests/tests_hugo/node_modules/call-bind/callBound.js b/tests/tests_hugo/with_express/node_modules/call-bind/callBound.js
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/callBound.js
rename to tests/tests_hugo/with_express/node_modules/call-bind/callBound.js
diff --git a/tests/tests_hugo/node_modules/call-bind/index.js b/tests/tests_hugo/with_express/node_modules/call-bind/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/index.js
rename to tests/tests_hugo/with_express/node_modules/call-bind/index.js
diff --git a/tests/tests_hugo/node_modules/call-bind/package.json b/tests/tests_hugo/with_express/node_modules/call-bind/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/package.json
rename to tests/tests_hugo/with_express/node_modules/call-bind/package.json
diff --git a/tests/tests_hugo/node_modules/call-bind/test/callBound.js b/tests/tests_hugo/with_express/node_modules/call-bind/test/callBound.js
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/test/callBound.js
rename to tests/tests_hugo/with_express/node_modules/call-bind/test/callBound.js
diff --git a/tests/tests_hugo/node_modules/call-bind/test/index.js b/tests/tests_hugo/with_express/node_modules/call-bind/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/call-bind/test/index.js
rename to tests/tests_hugo/with_express/node_modules/call-bind/test/index.js
diff --git a/tests/tests_hugo/node_modules/content-disposition/HISTORY.md b/tests/tests_hugo/with_express/node_modules/content-disposition/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/content-disposition/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/content-disposition/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/content-disposition/LICENSE b/tests/tests_hugo/with_express/node_modules/content-disposition/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/content-disposition/LICENSE
rename to tests/tests_hugo/with_express/node_modules/content-disposition/LICENSE
diff --git a/tests/tests_hugo/node_modules/content-disposition/README.md b/tests/tests_hugo/with_express/node_modules/content-disposition/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/content-disposition/README.md
rename to tests/tests_hugo/with_express/node_modules/content-disposition/README.md
diff --git a/tests/tests_hugo/node_modules/content-disposition/index.js b/tests/tests_hugo/with_express/node_modules/content-disposition/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/content-disposition/index.js
rename to tests/tests_hugo/with_express/node_modules/content-disposition/index.js
diff --git a/tests/tests_hugo/node_modules/content-disposition/package.json b/tests/tests_hugo/with_express/node_modules/content-disposition/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/content-disposition/package.json
rename to tests/tests_hugo/with_express/node_modules/content-disposition/package.json
diff --git a/tests/tests_hugo/node_modules/content-type/HISTORY.md b/tests/tests_hugo/with_express/node_modules/content-type/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/content-type/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/content-type/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/content-type/LICENSE b/tests/tests_hugo/with_express/node_modules/content-type/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/content-type/LICENSE
rename to tests/tests_hugo/with_express/node_modules/content-type/LICENSE
diff --git a/tests/tests_hugo/node_modules/content-type/README.md b/tests/tests_hugo/with_express/node_modules/content-type/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/content-type/README.md
rename to tests/tests_hugo/with_express/node_modules/content-type/README.md
diff --git a/tests/tests_hugo/node_modules/content-type/index.js b/tests/tests_hugo/with_express/node_modules/content-type/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/content-type/index.js
rename to tests/tests_hugo/with_express/node_modules/content-type/index.js
diff --git a/tests/tests_hugo/node_modules/content-type/package.json b/tests/tests_hugo/with_express/node_modules/content-type/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/content-type/package.json
rename to tests/tests_hugo/with_express/node_modules/content-type/package.json
diff --git a/tests/tests_hugo/node_modules/cookie-signature/.npmignore b/tests/tests_hugo/with_express/node_modules/cookie-signature/.npmignore
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie-signature/.npmignore
rename to tests/tests_hugo/with_express/node_modules/cookie-signature/.npmignore
diff --git a/tests/tests_hugo/node_modules/cookie-signature/History.md b/tests/tests_hugo/with_express/node_modules/cookie-signature/History.md
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie-signature/History.md
rename to tests/tests_hugo/with_express/node_modules/cookie-signature/History.md
diff --git a/tests/tests_hugo/node_modules/cookie-signature/Readme.md b/tests/tests_hugo/with_express/node_modules/cookie-signature/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie-signature/Readme.md
rename to tests/tests_hugo/with_express/node_modules/cookie-signature/Readme.md
diff --git a/tests/tests_hugo/node_modules/cookie-signature/index.js b/tests/tests_hugo/with_express/node_modules/cookie-signature/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie-signature/index.js
rename to tests/tests_hugo/with_express/node_modules/cookie-signature/index.js
diff --git a/tests/tests_hugo/node_modules/cookie-signature/package.json b/tests/tests_hugo/with_express/node_modules/cookie-signature/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie-signature/package.json
rename to tests/tests_hugo/with_express/node_modules/cookie-signature/package.json
diff --git a/tests/tests_hugo/node_modules/cookie/HISTORY.md b/tests/tests_hugo/with_express/node_modules/cookie/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/cookie/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/cookie/LICENSE b/tests/tests_hugo/with_express/node_modules/cookie/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/LICENSE
rename to tests/tests_hugo/with_express/node_modules/cookie/LICENSE
diff --git a/tests/tests_hugo/node_modules/cookie/README.md b/tests/tests_hugo/with_express/node_modules/cookie/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/README.md
rename to tests/tests_hugo/with_express/node_modules/cookie/README.md
diff --git a/tests/tests_hugo/node_modules/cookie/SECURITY.md b/tests/tests_hugo/with_express/node_modules/cookie/SECURITY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/SECURITY.md
rename to tests/tests_hugo/with_express/node_modules/cookie/SECURITY.md
diff --git a/tests/tests_hugo/node_modules/cookie/index.js b/tests/tests_hugo/with_express/node_modules/cookie/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/index.js
rename to tests/tests_hugo/with_express/node_modules/cookie/index.js
diff --git a/tests/tests_hugo/node_modules/cookie/package.json b/tests/tests_hugo/with_express/node_modules/cookie/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/cookie/package.json
rename to tests/tests_hugo/with_express/node_modules/cookie/package.json
diff --git a/tests/tests_hugo/node_modules/debug/.coveralls.yml b/tests/tests_hugo/with_express/node_modules/debug/.coveralls.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/.coveralls.yml
rename to tests/tests_hugo/with_express/node_modules/debug/.coveralls.yml
diff --git a/tests/tests_hugo/node_modules/debug/.eslintrc b/tests/tests_hugo/with_express/node_modules/debug/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/debug/.eslintrc
diff --git a/tests/tests_hugo/node_modules/debug/.npmignore b/tests/tests_hugo/with_express/node_modules/debug/.npmignore
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/.npmignore
rename to tests/tests_hugo/with_express/node_modules/debug/.npmignore
diff --git a/tests/tests_hugo/node_modules/debug/.travis.yml b/tests/tests_hugo/with_express/node_modules/debug/.travis.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/.travis.yml
rename to tests/tests_hugo/with_express/node_modules/debug/.travis.yml
diff --git a/tests/tests_hugo/node_modules/debug/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/debug/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/debug/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/debug/LICENSE b/tests/tests_hugo/with_express/node_modules/debug/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/LICENSE
rename to tests/tests_hugo/with_express/node_modules/debug/LICENSE
diff --git a/tests/tests_hugo/node_modules/debug/Makefile b/tests/tests_hugo/with_express/node_modules/debug/Makefile
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/Makefile
rename to tests/tests_hugo/with_express/node_modules/debug/Makefile
diff --git a/tests/tests_hugo/node_modules/debug/README.md b/tests/tests_hugo/with_express/node_modules/debug/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/README.md
rename to tests/tests_hugo/with_express/node_modules/debug/README.md
diff --git a/tests/tests_hugo/node_modules/debug/component.json b/tests/tests_hugo/with_express/node_modules/debug/component.json
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/component.json
rename to tests/tests_hugo/with_express/node_modules/debug/component.json
diff --git a/tests/tests_hugo/node_modules/debug/karma.conf.js b/tests/tests_hugo/with_express/node_modules/debug/karma.conf.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/karma.conf.js
rename to tests/tests_hugo/with_express/node_modules/debug/karma.conf.js
diff --git a/tests/tests_hugo/node_modules/debug/node.js b/tests/tests_hugo/with_express/node_modules/debug/node.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/node.js
rename to tests/tests_hugo/with_express/node_modules/debug/node.js
diff --git a/tests/tests_hugo/node_modules/debug/package.json b/tests/tests_hugo/with_express/node_modules/debug/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/package.json
rename to tests/tests_hugo/with_express/node_modules/debug/package.json
diff --git a/tests/tests_hugo/node_modules/debug/src/browser.js b/tests/tests_hugo/with_express/node_modules/debug/src/browser.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/src/browser.js
rename to tests/tests_hugo/with_express/node_modules/debug/src/browser.js
diff --git a/tests/tests_hugo/node_modules/debug/src/debug.js b/tests/tests_hugo/with_express/node_modules/debug/src/debug.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/src/debug.js
rename to tests/tests_hugo/with_express/node_modules/debug/src/debug.js
diff --git a/tests/tests_hugo/node_modules/debug/src/index.js b/tests/tests_hugo/with_express/node_modules/debug/src/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/src/index.js
rename to tests/tests_hugo/with_express/node_modules/debug/src/index.js
diff --git a/tests/tests_hugo/node_modules/debug/src/inspector-log.js b/tests/tests_hugo/with_express/node_modules/debug/src/inspector-log.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/src/inspector-log.js
rename to tests/tests_hugo/with_express/node_modules/debug/src/inspector-log.js
diff --git a/tests/tests_hugo/node_modules/debug/src/node.js b/tests/tests_hugo/with_express/node_modules/debug/src/node.js
similarity index 100%
rename from tests/tests_hugo/node_modules/debug/src/node.js
rename to tests/tests_hugo/with_express/node_modules/debug/src/node.js
diff --git a/tests/tests_hugo/node_modules/depd/History.md b/tests/tests_hugo/with_express/node_modules/depd/History.md
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/History.md
rename to tests/tests_hugo/with_express/node_modules/depd/History.md
diff --git a/tests/tests_hugo/node_modules/depd/LICENSE b/tests/tests_hugo/with_express/node_modules/depd/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/LICENSE
rename to tests/tests_hugo/with_express/node_modules/depd/LICENSE
diff --git a/tests/tests_hugo/node_modules/depd/Readme.md b/tests/tests_hugo/with_express/node_modules/depd/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/Readme.md
rename to tests/tests_hugo/with_express/node_modules/depd/Readme.md
diff --git a/tests/tests_hugo/node_modules/depd/index.js b/tests/tests_hugo/with_express/node_modules/depd/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/index.js
rename to tests/tests_hugo/with_express/node_modules/depd/index.js
diff --git a/tests/tests_hugo/node_modules/depd/lib/browser/index.js b/tests/tests_hugo/with_express/node_modules/depd/lib/browser/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/lib/browser/index.js
rename to tests/tests_hugo/with_express/node_modules/depd/lib/browser/index.js
diff --git a/tests/tests_hugo/node_modules/depd/package.json b/tests/tests_hugo/with_express/node_modules/depd/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/depd/package.json
rename to tests/tests_hugo/with_express/node_modules/depd/package.json
diff --git a/tests/tests_hugo/node_modules/destroy/LICENSE b/tests/tests_hugo/with_express/node_modules/destroy/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/destroy/LICENSE
rename to tests/tests_hugo/with_express/node_modules/destroy/LICENSE
diff --git a/tests/tests_hugo/node_modules/destroy/README.md b/tests/tests_hugo/with_express/node_modules/destroy/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/destroy/README.md
rename to tests/tests_hugo/with_express/node_modules/destroy/README.md
diff --git a/tests/tests_hugo/node_modules/destroy/index.js b/tests/tests_hugo/with_express/node_modules/destroy/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/destroy/index.js
rename to tests/tests_hugo/with_express/node_modules/destroy/index.js
diff --git a/tests/tests_hugo/node_modules/destroy/package.json b/tests/tests_hugo/with_express/node_modules/destroy/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/destroy/package.json
rename to tests/tests_hugo/with_express/node_modules/destroy/package.json
diff --git a/tests/tests_hugo/node_modules/ee-first/LICENSE b/tests/tests_hugo/with_express/node_modules/ee-first/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/ee-first/LICENSE
rename to tests/tests_hugo/with_express/node_modules/ee-first/LICENSE
diff --git a/tests/tests_hugo/node_modules/ee-first/README.md b/tests/tests_hugo/with_express/node_modules/ee-first/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/ee-first/README.md
rename to tests/tests_hugo/with_express/node_modules/ee-first/README.md
diff --git a/tests/tests_hugo/node_modules/ee-first/index.js b/tests/tests_hugo/with_express/node_modules/ee-first/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/ee-first/index.js
rename to tests/tests_hugo/with_express/node_modules/ee-first/index.js
diff --git a/tests/tests_hugo/node_modules/ee-first/package.json b/tests/tests_hugo/with_express/node_modules/ee-first/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/ee-first/package.json
rename to tests/tests_hugo/with_express/node_modules/ee-first/package.json
diff --git a/tests/tests_hugo/node_modules/encodeurl/HISTORY.md b/tests/tests_hugo/with_express/node_modules/encodeurl/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/encodeurl/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/encodeurl/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/encodeurl/LICENSE b/tests/tests_hugo/with_express/node_modules/encodeurl/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/encodeurl/LICENSE
rename to tests/tests_hugo/with_express/node_modules/encodeurl/LICENSE
diff --git a/tests/tests_hugo/node_modules/encodeurl/README.md b/tests/tests_hugo/with_express/node_modules/encodeurl/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/encodeurl/README.md
rename to tests/tests_hugo/with_express/node_modules/encodeurl/README.md
diff --git a/tests/tests_hugo/node_modules/encodeurl/index.js b/tests/tests_hugo/with_express/node_modules/encodeurl/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/encodeurl/index.js
rename to tests/tests_hugo/with_express/node_modules/encodeurl/index.js
diff --git a/tests/tests_hugo/node_modules/encodeurl/package.json b/tests/tests_hugo/with_express/node_modules/encodeurl/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/encodeurl/package.json
rename to tests/tests_hugo/with_express/node_modules/encodeurl/package.json
diff --git a/tests/tests_hugo/node_modules/escape-html/LICENSE b/tests/tests_hugo/with_express/node_modules/escape-html/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/escape-html/LICENSE
rename to tests/tests_hugo/with_express/node_modules/escape-html/LICENSE
diff --git a/tests/tests_hugo/node_modules/escape-html/Readme.md b/tests/tests_hugo/with_express/node_modules/escape-html/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/escape-html/Readme.md
rename to tests/tests_hugo/with_express/node_modules/escape-html/Readme.md
diff --git a/tests/tests_hugo/node_modules/escape-html/index.js b/tests/tests_hugo/with_express/node_modules/escape-html/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/escape-html/index.js
rename to tests/tests_hugo/with_express/node_modules/escape-html/index.js
diff --git a/tests/tests_hugo/node_modules/escape-html/package.json b/tests/tests_hugo/with_express/node_modules/escape-html/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/escape-html/package.json
rename to tests/tests_hugo/with_express/node_modules/escape-html/package.json
diff --git a/tests/tests_hugo/node_modules/etag/HISTORY.md b/tests/tests_hugo/with_express/node_modules/etag/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/etag/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/etag/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/etag/LICENSE b/tests/tests_hugo/with_express/node_modules/etag/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/etag/LICENSE
rename to tests/tests_hugo/with_express/node_modules/etag/LICENSE
diff --git a/tests/tests_hugo/node_modules/etag/README.md b/tests/tests_hugo/with_express/node_modules/etag/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/etag/README.md
rename to tests/tests_hugo/with_express/node_modules/etag/README.md
diff --git a/tests/tests_hugo/node_modules/etag/index.js b/tests/tests_hugo/with_express/node_modules/etag/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/etag/index.js
rename to tests/tests_hugo/with_express/node_modules/etag/index.js
diff --git a/tests/tests_hugo/node_modules/etag/package.json b/tests/tests_hugo/with_express/node_modules/etag/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/etag/package.json
rename to tests/tests_hugo/with_express/node_modules/etag/package.json
diff --git a/tests/tests_hugo/node_modules/express/History.md b/tests/tests_hugo/with_express/node_modules/express/History.md
similarity index 100%
rename from tests/tests_hugo/node_modules/express/History.md
rename to tests/tests_hugo/with_express/node_modules/express/History.md
diff --git a/tests/tests_hugo/node_modules/express/LICENSE b/tests/tests_hugo/with_express/node_modules/express/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/express/LICENSE
rename to tests/tests_hugo/with_express/node_modules/express/LICENSE
diff --git a/tests/tests_hugo/node_modules/express/Readme.md b/tests/tests_hugo/with_express/node_modules/express/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/express/Readme.md
rename to tests/tests_hugo/with_express/node_modules/express/Readme.md
diff --git a/tests/tests_hugo/node_modules/express/index.js b/tests/tests_hugo/with_express/node_modules/express/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/index.js
rename to tests/tests_hugo/with_express/node_modules/express/index.js
diff --git a/tests/tests_hugo/node_modules/express/lib/application.js b/tests/tests_hugo/with_express/node_modules/express/lib/application.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/application.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/application.js
diff --git a/tests/tests_hugo/node_modules/express/lib/express.js b/tests/tests_hugo/with_express/node_modules/express/lib/express.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/express.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/express.js
diff --git a/tests/tests_hugo/node_modules/express/lib/middleware/init.js b/tests/tests_hugo/with_express/node_modules/express/lib/middleware/init.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/middleware/init.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/middleware/init.js
diff --git a/tests/tests_hugo/node_modules/express/lib/middleware/query.js b/tests/tests_hugo/with_express/node_modules/express/lib/middleware/query.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/middleware/query.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/middleware/query.js
diff --git a/tests/tests_hugo/node_modules/express/lib/request.js b/tests/tests_hugo/with_express/node_modules/express/lib/request.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/request.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/request.js
diff --git a/tests/tests_hugo/node_modules/express/lib/response.js b/tests/tests_hugo/with_express/node_modules/express/lib/response.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/response.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/response.js
diff --git a/tests/tests_hugo/node_modules/express/lib/router/index.js b/tests/tests_hugo/with_express/node_modules/express/lib/router/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/router/index.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/router/index.js
diff --git a/tests/tests_hugo/node_modules/express/lib/router/layer.js b/tests/tests_hugo/with_express/node_modules/express/lib/router/layer.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/router/layer.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/router/layer.js
diff --git a/tests/tests_hugo/node_modules/express/lib/router/route.js b/tests/tests_hugo/with_express/node_modules/express/lib/router/route.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/router/route.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/router/route.js
diff --git a/tests/tests_hugo/node_modules/express/lib/utils.js b/tests/tests_hugo/with_express/node_modules/express/lib/utils.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/utils.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/utils.js
diff --git a/tests/tests_hugo/node_modules/express/lib/view.js b/tests/tests_hugo/with_express/node_modules/express/lib/view.js
similarity index 100%
rename from tests/tests_hugo/node_modules/express/lib/view.js
rename to tests/tests_hugo/with_express/node_modules/express/lib/view.js
diff --git a/tests/tests_hugo/node_modules/express/package.json b/tests/tests_hugo/with_express/node_modules/express/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/express/package.json
rename to tests/tests_hugo/with_express/node_modules/express/package.json
diff --git a/tests/tests_hugo/node_modules/finalhandler/HISTORY.md b/tests/tests_hugo/with_express/node_modules/finalhandler/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/finalhandler/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/finalhandler/LICENSE b/tests/tests_hugo/with_express/node_modules/finalhandler/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/LICENSE
rename to tests/tests_hugo/with_express/node_modules/finalhandler/LICENSE
diff --git a/tests/tests_hugo/node_modules/finalhandler/README.md b/tests/tests_hugo/with_express/node_modules/finalhandler/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/README.md
rename to tests/tests_hugo/with_express/node_modules/finalhandler/README.md
diff --git a/tests/tests_hugo/node_modules/finalhandler/SECURITY.md b/tests/tests_hugo/with_express/node_modules/finalhandler/SECURITY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/SECURITY.md
rename to tests/tests_hugo/with_express/node_modules/finalhandler/SECURITY.md
diff --git a/tests/tests_hugo/node_modules/finalhandler/index.js b/tests/tests_hugo/with_express/node_modules/finalhandler/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/index.js
rename to tests/tests_hugo/with_express/node_modules/finalhandler/index.js
diff --git a/tests/tests_hugo/node_modules/finalhandler/package.json b/tests/tests_hugo/with_express/node_modules/finalhandler/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/finalhandler/package.json
rename to tests/tests_hugo/with_express/node_modules/finalhandler/package.json
diff --git a/tests/tests_hugo/node_modules/forwarded/HISTORY.md b/tests/tests_hugo/with_express/node_modules/forwarded/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/forwarded/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/forwarded/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/forwarded/LICENSE b/tests/tests_hugo/with_express/node_modules/forwarded/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/forwarded/LICENSE
rename to tests/tests_hugo/with_express/node_modules/forwarded/LICENSE
diff --git a/tests/tests_hugo/node_modules/forwarded/README.md b/tests/tests_hugo/with_express/node_modules/forwarded/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/forwarded/README.md
rename to tests/tests_hugo/with_express/node_modules/forwarded/README.md
diff --git a/tests/tests_hugo/node_modules/forwarded/index.js b/tests/tests_hugo/with_express/node_modules/forwarded/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/forwarded/index.js
rename to tests/tests_hugo/with_express/node_modules/forwarded/index.js
diff --git a/tests/tests_hugo/node_modules/forwarded/package.json b/tests/tests_hugo/with_express/node_modules/forwarded/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/forwarded/package.json
rename to tests/tests_hugo/with_express/node_modules/forwarded/package.json
diff --git a/tests/tests_hugo/node_modules/fresh/HISTORY.md b/tests/tests_hugo/with_express/node_modules/fresh/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/fresh/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/fresh/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/fresh/LICENSE b/tests/tests_hugo/with_express/node_modules/fresh/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/fresh/LICENSE
rename to tests/tests_hugo/with_express/node_modules/fresh/LICENSE
diff --git a/tests/tests_hugo/node_modules/fresh/README.md b/tests/tests_hugo/with_express/node_modules/fresh/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/fresh/README.md
rename to tests/tests_hugo/with_express/node_modules/fresh/README.md
diff --git a/tests/tests_hugo/node_modules/fresh/index.js b/tests/tests_hugo/with_express/node_modules/fresh/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/fresh/index.js
rename to tests/tests_hugo/with_express/node_modules/fresh/index.js
diff --git a/tests/tests_hugo/node_modules/fresh/package.json b/tests/tests_hugo/with_express/node_modules/fresh/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/fresh/package.json
rename to tests/tests_hugo/with_express/node_modules/fresh/package.json
diff --git a/tests/tests_hugo/node_modules/function-bind/.editorconfig b/tests/tests_hugo/with_express/node_modules/function-bind/.editorconfig
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/.editorconfig
rename to tests/tests_hugo/with_express/node_modules/function-bind/.editorconfig
diff --git a/tests/tests_hugo/node_modules/function-bind/.eslintrc b/tests/tests_hugo/with_express/node_modules/function-bind/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/function-bind/.eslintrc
diff --git a/tests/tests_hugo/node_modules/function-bind/.jscs.json b/tests/tests_hugo/with_express/node_modules/function-bind/.jscs.json
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/.jscs.json
rename to tests/tests_hugo/with_express/node_modules/function-bind/.jscs.json
diff --git a/tests/tests_hugo/node_modules/function-bind/.npmignore b/tests/tests_hugo/with_express/node_modules/function-bind/.npmignore
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/.npmignore
rename to tests/tests_hugo/with_express/node_modules/function-bind/.npmignore
diff --git a/tests/tests_hugo/node_modules/function-bind/.travis.yml b/tests/tests_hugo/with_express/node_modules/function-bind/.travis.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/.travis.yml
rename to tests/tests_hugo/with_express/node_modules/function-bind/.travis.yml
diff --git a/tests/tests_hugo/node_modules/function-bind/LICENSE b/tests/tests_hugo/with_express/node_modules/function-bind/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/LICENSE
rename to tests/tests_hugo/with_express/node_modules/function-bind/LICENSE
diff --git a/tests/tests_hugo/node_modules/function-bind/README.md b/tests/tests_hugo/with_express/node_modules/function-bind/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/README.md
rename to tests/tests_hugo/with_express/node_modules/function-bind/README.md
diff --git a/tests/tests_hugo/node_modules/function-bind/implementation.js b/tests/tests_hugo/with_express/node_modules/function-bind/implementation.js
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/implementation.js
rename to tests/tests_hugo/with_express/node_modules/function-bind/implementation.js
diff --git a/tests/tests_hugo/node_modules/function-bind/index.js b/tests/tests_hugo/with_express/node_modules/function-bind/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/index.js
rename to tests/tests_hugo/with_express/node_modules/function-bind/index.js
diff --git a/tests/tests_hugo/node_modules/function-bind/package.json b/tests/tests_hugo/with_express/node_modules/function-bind/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/package.json
rename to tests/tests_hugo/with_express/node_modules/function-bind/package.json
diff --git a/tests/tests_hugo/node_modules/function-bind/test/.eslintrc b/tests/tests_hugo/with_express/node_modules/function-bind/test/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/test/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/function-bind/test/.eslintrc
diff --git a/tests/tests_hugo/node_modules/function-bind/test/index.js b/tests/tests_hugo/with_express/node_modules/function-bind/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/function-bind/test/index.js
rename to tests/tests_hugo/with_express/node_modules/function-bind/test/index.js
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/.eslintrc b/tests/tests_hugo/with_express/node_modules/get-intrinsic/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/.eslintrc
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/get-intrinsic/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/.nycrc b/tests/tests_hugo/with_express/node_modules/get-intrinsic/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/.nycrc
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/.nycrc
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/get-intrinsic/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/LICENSE b/tests/tests_hugo/with_express/node_modules/get-intrinsic/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/LICENSE
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/LICENSE
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/README.md b/tests/tests_hugo/with_express/node_modules/get-intrinsic/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/README.md
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/README.md
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/index.js b/tests/tests_hugo/with_express/node_modules/get-intrinsic/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/index.js
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/index.js
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/package.json b/tests/tests_hugo/with_express/node_modules/get-intrinsic/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/package.json
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/package.json
diff --git a/tests/tests_hugo/node_modules/get-intrinsic/test/GetIntrinsic.js b/tests/tests_hugo/with_express/node_modules/get-intrinsic/test/GetIntrinsic.js
similarity index 100%
rename from tests/tests_hugo/node_modules/get-intrinsic/test/GetIntrinsic.js
rename to tests/tests_hugo/with_express/node_modules/get-intrinsic/test/GetIntrinsic.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/.eslintrc b/tests/tests_hugo/with_express/node_modules/has-symbols/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/has-symbols/.eslintrc
diff --git a/tests/tests_hugo/node_modules/has-symbols/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/has-symbols/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/has-symbols/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/has-symbols/.nycrc b/tests/tests_hugo/with_express/node_modules/has-symbols/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/.nycrc
rename to tests/tests_hugo/with_express/node_modules/has-symbols/.nycrc
diff --git a/tests/tests_hugo/node_modules/has-symbols/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/has-symbols/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/has-symbols/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/has-symbols/LICENSE b/tests/tests_hugo/with_express/node_modules/has-symbols/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/LICENSE
rename to tests/tests_hugo/with_express/node_modules/has-symbols/LICENSE
diff --git a/tests/tests_hugo/node_modules/has-symbols/README.md b/tests/tests_hugo/with_express/node_modules/has-symbols/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/README.md
rename to tests/tests_hugo/with_express/node_modules/has-symbols/README.md
diff --git a/tests/tests_hugo/node_modules/has-symbols/index.js b/tests/tests_hugo/with_express/node_modules/has-symbols/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/index.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/index.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/package.json b/tests/tests_hugo/with_express/node_modules/has-symbols/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/package.json
rename to tests/tests_hugo/with_express/node_modules/has-symbols/package.json
diff --git a/tests/tests_hugo/node_modules/has-symbols/shams.js b/tests/tests_hugo/with_express/node_modules/has-symbols/shams.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/shams.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/shams.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/test/index.js b/tests/tests_hugo/with_express/node_modules/has-symbols/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/test/index.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/test/index.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/test/shams/core-js.js b/tests/tests_hugo/with_express/node_modules/has-symbols/test/shams/core-js.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/test/shams/core-js.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/test/shams/core-js.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/test/shams/get-own-property-symbols.js b/tests/tests_hugo/with_express/node_modules/has-symbols/test/shams/get-own-property-symbols.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/test/shams/get-own-property-symbols.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/test/shams/get-own-property-symbols.js
diff --git a/tests/tests_hugo/node_modules/has-symbols/test/tests.js b/tests/tests_hugo/with_express/node_modules/has-symbols/test/tests.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has-symbols/test/tests.js
rename to tests/tests_hugo/with_express/node_modules/has-symbols/test/tests.js
diff --git a/tests/tests_hugo/node_modules/has/LICENSE-MIT b/tests/tests_hugo/with_express/node_modules/has/LICENSE-MIT
similarity index 100%
rename from tests/tests_hugo/node_modules/has/LICENSE-MIT
rename to tests/tests_hugo/with_express/node_modules/has/LICENSE-MIT
diff --git a/tests/tests_hugo/node_modules/has/README.md b/tests/tests_hugo/with_express/node_modules/has/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/has/README.md
rename to tests/tests_hugo/with_express/node_modules/has/README.md
diff --git a/tests/tests_hugo/node_modules/has/package.json b/tests/tests_hugo/with_express/node_modules/has/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/has/package.json
rename to tests/tests_hugo/with_express/node_modules/has/package.json
diff --git a/tests/tests_hugo/node_modules/has/src/index.js b/tests/tests_hugo/with_express/node_modules/has/src/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has/src/index.js
rename to tests/tests_hugo/with_express/node_modules/has/src/index.js
diff --git a/tests/tests_hugo/node_modules/has/test/index.js b/tests/tests_hugo/with_express/node_modules/has/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/has/test/index.js
rename to tests/tests_hugo/with_express/node_modules/has/test/index.js
diff --git a/tests/tests_hugo/node_modules/http-errors/HISTORY.md b/tests/tests_hugo/with_express/node_modules/http-errors/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/http-errors/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/http-errors/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/http-errors/LICENSE b/tests/tests_hugo/with_express/node_modules/http-errors/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/http-errors/LICENSE
rename to tests/tests_hugo/with_express/node_modules/http-errors/LICENSE
diff --git a/tests/tests_hugo/node_modules/http-errors/README.md b/tests/tests_hugo/with_express/node_modules/http-errors/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/http-errors/README.md
rename to tests/tests_hugo/with_express/node_modules/http-errors/README.md
diff --git a/tests/tests_hugo/node_modules/http-errors/index.js b/tests/tests_hugo/with_express/node_modules/http-errors/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/http-errors/index.js
rename to tests/tests_hugo/with_express/node_modules/http-errors/index.js
diff --git a/tests/tests_hugo/node_modules/http-errors/package.json b/tests/tests_hugo/with_express/node_modules/http-errors/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/http-errors/package.json
rename to tests/tests_hugo/with_express/node_modules/http-errors/package.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/Changelog.md b/tests/tests_hugo/with_express/node_modules/iconv-lite/Changelog.md
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/Changelog.md
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/Changelog.md
diff --git a/tests/tests_hugo/node_modules/iconv-lite/LICENSE b/tests/tests_hugo/with_express/node_modules/iconv-lite/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/LICENSE
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/LICENSE
diff --git a/tests/tests_hugo/node_modules/iconv-lite/README.md b/tests/tests_hugo/with_express/node_modules/iconv-lite/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/README.md
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/README.md
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/dbcs-codec.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/dbcs-codec.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/dbcs-codec.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/dbcs-codec.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/dbcs-data.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/dbcs-data.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/dbcs-data.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/dbcs-data.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/index.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/index.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/index.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/internal.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/internal.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/internal.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/internal.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-codec.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-codec.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-codec.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-codec.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-data-generated.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-data-generated.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-data-generated.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-data-generated.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-data.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-data.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/sbcs-data.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/sbcs-data.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/big5-added.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/big5-added.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/big5-added.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/big5-added.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp936.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp936.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp936.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp936.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp949.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp949.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp949.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp949.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp950.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp950.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/cp950.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/cp950.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/eucjp.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/eucjp.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/eucjp.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/eucjp.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/gbk-added.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/gbk-added.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/gbk-added.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/gbk-added.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/tables/shiftjis.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/shiftjis.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/tables/shiftjis.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/tables/shiftjis.json
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/utf16.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/utf16.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/utf16.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/utf16.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/encodings/utf7.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/utf7.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/encodings/utf7.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/encodings/utf7.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/lib/bom-handling.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/lib/bom-handling.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/lib/bom-handling.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/lib/bom-handling.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/lib/extend-node.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/lib/extend-node.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/lib/extend-node.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/lib/extend-node.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/lib/index.d.ts b/tests/tests_hugo/with_express/node_modules/iconv-lite/lib/index.d.ts
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/lib/index.d.ts
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/lib/index.d.ts
diff --git a/tests/tests_hugo/node_modules/iconv-lite/lib/index.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/lib/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/lib/index.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/lib/index.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/lib/streams.js b/tests/tests_hugo/with_express/node_modules/iconv-lite/lib/streams.js
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/lib/streams.js
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/lib/streams.js
diff --git a/tests/tests_hugo/node_modules/iconv-lite/package.json b/tests/tests_hugo/with_express/node_modules/iconv-lite/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/iconv-lite/package.json
rename to tests/tests_hugo/with_express/node_modules/iconv-lite/package.json
diff --git a/tests/tests_hugo/node_modules/inherits/LICENSE b/tests/tests_hugo/with_express/node_modules/inherits/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/inherits/LICENSE
rename to tests/tests_hugo/with_express/node_modules/inherits/LICENSE
diff --git a/tests/tests_hugo/node_modules/inherits/README.md b/tests/tests_hugo/with_express/node_modules/inherits/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/inherits/README.md
rename to tests/tests_hugo/with_express/node_modules/inherits/README.md
diff --git a/tests/tests_hugo/node_modules/inherits/inherits.js b/tests/tests_hugo/with_express/node_modules/inherits/inherits.js
similarity index 100%
rename from tests/tests_hugo/node_modules/inherits/inherits.js
rename to tests/tests_hugo/with_express/node_modules/inherits/inherits.js
diff --git a/tests/tests_hugo/node_modules/inherits/inherits_browser.js b/tests/tests_hugo/with_express/node_modules/inherits/inherits_browser.js
similarity index 100%
rename from tests/tests_hugo/node_modules/inherits/inherits_browser.js
rename to tests/tests_hugo/with_express/node_modules/inherits/inherits_browser.js
diff --git a/tests/tests_hugo/node_modules/inherits/package.json b/tests/tests_hugo/with_express/node_modules/inherits/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/inherits/package.json
rename to tests/tests_hugo/with_express/node_modules/inherits/package.json
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/LICENSE b/tests/tests_hugo/with_express/node_modules/ipaddr.js/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/LICENSE
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/LICENSE
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/README.md b/tests/tests_hugo/with_express/node_modules/ipaddr.js/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/README.md
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/README.md
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/ipaddr.min.js b/tests/tests_hugo/with_express/node_modules/ipaddr.js/ipaddr.min.js
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/ipaddr.min.js
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/ipaddr.min.js
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/lib/ipaddr.js b/tests/tests_hugo/with_express/node_modules/ipaddr.js/lib/ipaddr.js
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/lib/ipaddr.js
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/lib/ipaddr.js
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/lib/ipaddr.js.d.ts b/tests/tests_hugo/with_express/node_modules/ipaddr.js/lib/ipaddr.js.d.ts
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/lib/ipaddr.js.d.ts
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/lib/ipaddr.js.d.ts
diff --git a/tests/tests_hugo/node_modules/ipaddr.js/package.json b/tests/tests_hugo/with_express/node_modules/ipaddr.js/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/ipaddr.js/package.json
rename to tests/tests_hugo/with_express/node_modules/ipaddr.js/package.json
diff --git a/tests/tests_hugo/node_modules/media-typer/HISTORY.md b/tests/tests_hugo/with_express/node_modules/media-typer/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/media-typer/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/media-typer/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/media-typer/LICENSE b/tests/tests_hugo/with_express/node_modules/media-typer/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/media-typer/LICENSE
rename to tests/tests_hugo/with_express/node_modules/media-typer/LICENSE
diff --git a/tests/tests_hugo/node_modules/media-typer/README.md b/tests/tests_hugo/with_express/node_modules/media-typer/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/media-typer/README.md
rename to tests/tests_hugo/with_express/node_modules/media-typer/README.md
diff --git a/tests/tests_hugo/node_modules/media-typer/index.js b/tests/tests_hugo/with_express/node_modules/media-typer/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/media-typer/index.js
rename to tests/tests_hugo/with_express/node_modules/media-typer/index.js
diff --git a/tests/tests_hugo/node_modules/media-typer/package.json b/tests/tests_hugo/with_express/node_modules/media-typer/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/media-typer/package.json
rename to tests/tests_hugo/with_express/node_modules/media-typer/package.json
diff --git a/tests/tests_hugo/node_modules/merge-descriptors/HISTORY.md b/tests/tests_hugo/with_express/node_modules/merge-descriptors/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/merge-descriptors/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/merge-descriptors/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/merge-descriptors/LICENSE b/tests/tests_hugo/with_express/node_modules/merge-descriptors/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/merge-descriptors/LICENSE
rename to tests/tests_hugo/with_express/node_modules/merge-descriptors/LICENSE
diff --git a/tests/tests_hugo/node_modules/merge-descriptors/README.md b/tests/tests_hugo/with_express/node_modules/merge-descriptors/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/merge-descriptors/README.md
rename to tests/tests_hugo/with_express/node_modules/merge-descriptors/README.md
diff --git a/tests/tests_hugo/node_modules/merge-descriptors/index.js b/tests/tests_hugo/with_express/node_modules/merge-descriptors/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/merge-descriptors/index.js
rename to tests/tests_hugo/with_express/node_modules/merge-descriptors/index.js
diff --git a/tests/tests_hugo/node_modules/merge-descriptors/package.json b/tests/tests_hugo/with_express/node_modules/merge-descriptors/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/merge-descriptors/package.json
rename to tests/tests_hugo/with_express/node_modules/merge-descriptors/package.json
diff --git a/tests/tests_hugo/node_modules/methods/HISTORY.md b/tests/tests_hugo/with_express/node_modules/methods/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/methods/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/methods/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/methods/LICENSE b/tests/tests_hugo/with_express/node_modules/methods/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/methods/LICENSE
rename to tests/tests_hugo/with_express/node_modules/methods/LICENSE
diff --git a/tests/tests_hugo/node_modules/methods/README.md b/tests/tests_hugo/with_express/node_modules/methods/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/methods/README.md
rename to tests/tests_hugo/with_express/node_modules/methods/README.md
diff --git a/tests/tests_hugo/node_modules/methods/index.js b/tests/tests_hugo/with_express/node_modules/methods/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/methods/index.js
rename to tests/tests_hugo/with_express/node_modules/methods/index.js
diff --git a/tests/tests_hugo/node_modules/methods/package.json b/tests/tests_hugo/with_express/node_modules/methods/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/methods/package.json
rename to tests/tests_hugo/with_express/node_modules/methods/package.json
diff --git a/tests/tests_hugo/node_modules/mime-db/HISTORY.md b/tests/tests_hugo/with_express/node_modules/mime-db/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/mime-db/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/mime-db/LICENSE b/tests/tests_hugo/with_express/node_modules/mime-db/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/LICENSE
rename to tests/tests_hugo/with_express/node_modules/mime-db/LICENSE
diff --git a/tests/tests_hugo/node_modules/mime-db/README.md b/tests/tests_hugo/with_express/node_modules/mime-db/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/README.md
rename to tests/tests_hugo/with_express/node_modules/mime-db/README.md
diff --git a/tests/tests_hugo/node_modules/mime-db/db.json b/tests/tests_hugo/with_express/node_modules/mime-db/db.json
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/db.json
rename to tests/tests_hugo/with_express/node_modules/mime-db/db.json
diff --git a/tests/tests_hugo/node_modules/mime-db/index.js b/tests/tests_hugo/with_express/node_modules/mime-db/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/index.js
rename to tests/tests_hugo/with_express/node_modules/mime-db/index.js
diff --git a/tests/tests_hugo/node_modules/mime-db/package.json b/tests/tests_hugo/with_express/node_modules/mime-db/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-db/package.json
rename to tests/tests_hugo/with_express/node_modules/mime-db/package.json
diff --git a/tests/tests_hugo/node_modules/mime-types/HISTORY.md b/tests/tests_hugo/with_express/node_modules/mime-types/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-types/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/mime-types/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/mime-types/LICENSE b/tests/tests_hugo/with_express/node_modules/mime-types/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-types/LICENSE
rename to tests/tests_hugo/with_express/node_modules/mime-types/LICENSE
diff --git a/tests/tests_hugo/node_modules/mime-types/README.md b/tests/tests_hugo/with_express/node_modules/mime-types/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-types/README.md
rename to tests/tests_hugo/with_express/node_modules/mime-types/README.md
diff --git a/tests/tests_hugo/node_modules/mime-types/index.js b/tests/tests_hugo/with_express/node_modules/mime-types/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-types/index.js
rename to tests/tests_hugo/with_express/node_modules/mime-types/index.js
diff --git a/tests/tests_hugo/node_modules/mime-types/package.json b/tests/tests_hugo/with_express/node_modules/mime-types/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/mime-types/package.json
rename to tests/tests_hugo/with_express/node_modules/mime-types/package.json
diff --git a/tests/tests_hugo/node_modules/mime/.npmignore b/tests/tests_hugo/with_express/node_modules/mime/.npmignore
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/.npmignore
rename to tests/tests_hugo/with_express/node_modules/mime/.npmignore
diff --git a/tests/tests_hugo/node_modules/mime/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/mime/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/mime/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/mime/LICENSE b/tests/tests_hugo/with_express/node_modules/mime/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/LICENSE
rename to tests/tests_hugo/with_express/node_modules/mime/LICENSE
diff --git a/tests/tests_hugo/node_modules/mime/README.md b/tests/tests_hugo/with_express/node_modules/mime/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/README.md
rename to tests/tests_hugo/with_express/node_modules/mime/README.md
diff --git a/tests/tests_hugo/node_modules/mime/cli.js b/tests/tests_hugo/with_express/node_modules/mime/cli.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/cli.js
rename to tests/tests_hugo/with_express/node_modules/mime/cli.js
diff --git a/tests/tests_hugo/node_modules/mime/mime.js b/tests/tests_hugo/with_express/node_modules/mime/mime.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/mime.js
rename to tests/tests_hugo/with_express/node_modules/mime/mime.js
diff --git a/tests/tests_hugo/node_modules/mime/package.json b/tests/tests_hugo/with_express/node_modules/mime/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/package.json
rename to tests/tests_hugo/with_express/node_modules/mime/package.json
diff --git a/tests/tests_hugo/node_modules/mime/src/build.js b/tests/tests_hugo/with_express/node_modules/mime/src/build.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/src/build.js
rename to tests/tests_hugo/with_express/node_modules/mime/src/build.js
diff --git a/tests/tests_hugo/node_modules/mime/src/test.js b/tests/tests_hugo/with_express/node_modules/mime/src/test.js
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/src/test.js
rename to tests/tests_hugo/with_express/node_modules/mime/src/test.js
diff --git a/tests/tests_hugo/node_modules/mime/types.json b/tests/tests_hugo/with_express/node_modules/mime/types.json
similarity index 100%
rename from tests/tests_hugo/node_modules/mime/types.json
rename to tests/tests_hugo/with_express/node_modules/mime/types.json
diff --git a/tests/tests_hugo/node_modules/ms/index.js b/tests/tests_hugo/with_express/node_modules/ms/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/ms/index.js
rename to tests/tests_hugo/with_express/node_modules/ms/index.js
diff --git a/tests/tests_hugo/node_modules/ms/license.md b/tests/tests_hugo/with_express/node_modules/ms/license.md
similarity index 100%
rename from tests/tests_hugo/node_modules/ms/license.md
rename to tests/tests_hugo/with_express/node_modules/ms/license.md
diff --git a/tests/tests_hugo/node_modules/ms/package.json b/tests/tests_hugo/with_express/node_modules/ms/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/ms/package.json
rename to tests/tests_hugo/with_express/node_modules/ms/package.json
diff --git a/tests/tests_hugo/node_modules/ms/readme.md b/tests/tests_hugo/with_express/node_modules/ms/readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/ms/readme.md
rename to tests/tests_hugo/with_express/node_modules/ms/readme.md
diff --git a/tests/tests_hugo/node_modules/negotiator/HISTORY.md b/tests/tests_hugo/with_express/node_modules/negotiator/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/negotiator/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/negotiator/LICENSE b/tests/tests_hugo/with_express/node_modules/negotiator/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/LICENSE
rename to tests/tests_hugo/with_express/node_modules/negotiator/LICENSE
diff --git a/tests/tests_hugo/node_modules/negotiator/README.md b/tests/tests_hugo/with_express/node_modules/negotiator/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/README.md
rename to tests/tests_hugo/with_express/node_modules/negotiator/README.md
diff --git a/tests/tests_hugo/node_modules/negotiator/index.js b/tests/tests_hugo/with_express/node_modules/negotiator/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/index.js
rename to tests/tests_hugo/with_express/node_modules/negotiator/index.js
diff --git a/tests/tests_hugo/node_modules/negotiator/lib/charset.js b/tests/tests_hugo/with_express/node_modules/negotiator/lib/charset.js
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/lib/charset.js
rename to tests/tests_hugo/with_express/node_modules/negotiator/lib/charset.js
diff --git a/tests/tests_hugo/node_modules/negotiator/lib/encoding.js b/tests/tests_hugo/with_express/node_modules/negotiator/lib/encoding.js
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/lib/encoding.js
rename to tests/tests_hugo/with_express/node_modules/negotiator/lib/encoding.js
diff --git a/tests/tests_hugo/node_modules/negotiator/lib/language.js b/tests/tests_hugo/with_express/node_modules/negotiator/lib/language.js
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/lib/language.js
rename to tests/tests_hugo/with_express/node_modules/negotiator/lib/language.js
diff --git a/tests/tests_hugo/node_modules/negotiator/lib/mediaType.js b/tests/tests_hugo/with_express/node_modules/negotiator/lib/mediaType.js
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/lib/mediaType.js
rename to tests/tests_hugo/with_express/node_modules/negotiator/lib/mediaType.js
diff --git a/tests/tests_hugo/node_modules/negotiator/package.json b/tests/tests_hugo/with_express/node_modules/negotiator/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/negotiator/package.json
rename to tests/tests_hugo/with_express/node_modules/negotiator/package.json
diff --git a/tests/tests_hugo/node_modules/object-inspect/.eslintrc b/tests/tests_hugo/with_express/node_modules/object-inspect/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/object-inspect/.eslintrc
diff --git a/tests/tests_hugo/node_modules/object-inspect/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/object-inspect/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/object-inspect/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/object-inspect/.nycrc b/tests/tests_hugo/with_express/node_modules/object-inspect/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/.nycrc
rename to tests/tests_hugo/with_express/node_modules/object-inspect/.nycrc
diff --git a/tests/tests_hugo/node_modules/object-inspect/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/object-inspect/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/object-inspect/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/object-inspect/LICENSE b/tests/tests_hugo/with_express/node_modules/object-inspect/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/LICENSE
rename to tests/tests_hugo/with_express/node_modules/object-inspect/LICENSE
diff --git a/tests/tests_hugo/node_modules/object-inspect/example/all.js b/tests/tests_hugo/with_express/node_modules/object-inspect/example/all.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/example/all.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/example/all.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/example/circular.js b/tests/tests_hugo/with_express/node_modules/object-inspect/example/circular.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/example/circular.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/example/circular.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/example/fn.js b/tests/tests_hugo/with_express/node_modules/object-inspect/example/fn.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/example/fn.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/example/fn.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/example/inspect.js b/tests/tests_hugo/with_express/node_modules/object-inspect/example/inspect.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/example/inspect.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/example/inspect.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/index.js b/tests/tests_hugo/with_express/node_modules/object-inspect/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/index.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/index.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/package-support.json b/tests/tests_hugo/with_express/node_modules/object-inspect/package-support.json
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/package-support.json
rename to tests/tests_hugo/with_express/node_modules/object-inspect/package-support.json
diff --git a/tests/tests_hugo/node_modules/object-inspect/package.json b/tests/tests_hugo/with_express/node_modules/object-inspect/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/package.json
rename to tests/tests_hugo/with_express/node_modules/object-inspect/package.json
diff --git a/tests/tests_hugo/node_modules/object-inspect/readme.markdown b/tests/tests_hugo/with_express/node_modules/object-inspect/readme.markdown
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/readme.markdown
rename to tests/tests_hugo/with_express/node_modules/object-inspect/readme.markdown
diff --git a/tests/tests_hugo/node_modules/object-inspect/test-core-js.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test-core-js.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test-core-js.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test-core-js.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/bigint.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/bigint.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/bigint.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/bigint.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/browser/dom.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/browser/dom.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/browser/dom.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/browser/dom.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/circular.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/circular.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/circular.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/circular.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/deep.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/deep.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/deep.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/deep.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/element.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/element.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/element.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/element.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/err.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/err.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/err.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/err.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/fakes.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/fakes.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/fakes.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/fakes.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/fn.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/fn.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/fn.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/fn.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/has.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/has.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/has.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/has.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/holes.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/holes.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/holes.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/holes.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/indent-option.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/indent-option.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/indent-option.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/indent-option.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/inspect.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/inspect.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/inspect.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/inspect.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/lowbyte.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/lowbyte.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/lowbyte.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/lowbyte.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/number.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/number.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/number.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/number.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/quoteStyle.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/quoteStyle.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/quoteStyle.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/quoteStyle.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/toStringTag.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/toStringTag.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/toStringTag.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/toStringTag.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/undef.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/undef.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/undef.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/undef.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/test/values.js b/tests/tests_hugo/with_express/node_modules/object-inspect/test/values.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/test/values.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/test/values.js
diff --git a/tests/tests_hugo/node_modules/object-inspect/util.inspect.js b/tests/tests_hugo/with_express/node_modules/object-inspect/util.inspect.js
similarity index 100%
rename from tests/tests_hugo/node_modules/object-inspect/util.inspect.js
rename to tests/tests_hugo/with_express/node_modules/object-inspect/util.inspect.js
diff --git a/tests/tests_hugo/node_modules/on-finished/HISTORY.md b/tests/tests_hugo/with_express/node_modules/on-finished/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/on-finished/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/on-finished/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/on-finished/LICENSE b/tests/tests_hugo/with_express/node_modules/on-finished/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/on-finished/LICENSE
rename to tests/tests_hugo/with_express/node_modules/on-finished/LICENSE
diff --git a/tests/tests_hugo/node_modules/on-finished/README.md b/tests/tests_hugo/with_express/node_modules/on-finished/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/on-finished/README.md
rename to tests/tests_hugo/with_express/node_modules/on-finished/README.md
diff --git a/tests/tests_hugo/node_modules/on-finished/index.js b/tests/tests_hugo/with_express/node_modules/on-finished/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/on-finished/index.js
rename to tests/tests_hugo/with_express/node_modules/on-finished/index.js
diff --git a/tests/tests_hugo/node_modules/on-finished/package.json b/tests/tests_hugo/with_express/node_modules/on-finished/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/on-finished/package.json
rename to tests/tests_hugo/with_express/node_modules/on-finished/package.json
diff --git a/tests/tests_hugo/node_modules/parseurl/HISTORY.md b/tests/tests_hugo/with_express/node_modules/parseurl/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/parseurl/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/parseurl/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/parseurl/LICENSE b/tests/tests_hugo/with_express/node_modules/parseurl/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/parseurl/LICENSE
rename to tests/tests_hugo/with_express/node_modules/parseurl/LICENSE
diff --git a/tests/tests_hugo/node_modules/parseurl/README.md b/tests/tests_hugo/with_express/node_modules/parseurl/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/parseurl/README.md
rename to tests/tests_hugo/with_express/node_modules/parseurl/README.md
diff --git a/tests/tests_hugo/node_modules/parseurl/index.js b/tests/tests_hugo/with_express/node_modules/parseurl/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/parseurl/index.js
rename to tests/tests_hugo/with_express/node_modules/parseurl/index.js
diff --git a/tests/tests_hugo/node_modules/parseurl/package.json b/tests/tests_hugo/with_express/node_modules/parseurl/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/parseurl/package.json
rename to tests/tests_hugo/with_express/node_modules/parseurl/package.json
diff --git a/tests/tests_hugo/node_modules/path-to-regexp/History.md b/tests/tests_hugo/with_express/node_modules/path-to-regexp/History.md
similarity index 100%
rename from tests/tests_hugo/node_modules/path-to-regexp/History.md
rename to tests/tests_hugo/with_express/node_modules/path-to-regexp/History.md
diff --git a/tests/tests_hugo/node_modules/path-to-regexp/LICENSE b/tests/tests_hugo/with_express/node_modules/path-to-regexp/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/path-to-regexp/LICENSE
rename to tests/tests_hugo/with_express/node_modules/path-to-regexp/LICENSE
diff --git a/tests/tests_hugo/node_modules/path-to-regexp/Readme.md b/tests/tests_hugo/with_express/node_modules/path-to-regexp/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/path-to-regexp/Readme.md
rename to tests/tests_hugo/with_express/node_modules/path-to-regexp/Readme.md
diff --git a/tests/tests_hugo/node_modules/path-to-regexp/index.js b/tests/tests_hugo/with_express/node_modules/path-to-regexp/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/path-to-regexp/index.js
rename to tests/tests_hugo/with_express/node_modules/path-to-regexp/index.js
diff --git a/tests/tests_hugo/node_modules/path-to-regexp/package.json b/tests/tests_hugo/with_express/node_modules/path-to-regexp/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/path-to-regexp/package.json
rename to tests/tests_hugo/with_express/node_modules/path-to-regexp/package.json
diff --git a/tests/tests_hugo/node_modules/proxy-addr/HISTORY.md b/tests/tests_hugo/with_express/node_modules/proxy-addr/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/proxy-addr/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/proxy-addr/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/proxy-addr/LICENSE b/tests/tests_hugo/with_express/node_modules/proxy-addr/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/proxy-addr/LICENSE
rename to tests/tests_hugo/with_express/node_modules/proxy-addr/LICENSE
diff --git a/tests/tests_hugo/node_modules/proxy-addr/README.md b/tests/tests_hugo/with_express/node_modules/proxy-addr/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/proxy-addr/README.md
rename to tests/tests_hugo/with_express/node_modules/proxy-addr/README.md
diff --git a/tests/tests_hugo/node_modules/proxy-addr/index.js b/tests/tests_hugo/with_express/node_modules/proxy-addr/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/proxy-addr/index.js
rename to tests/tests_hugo/with_express/node_modules/proxy-addr/index.js
diff --git a/tests/tests_hugo/node_modules/proxy-addr/package.json b/tests/tests_hugo/with_express/node_modules/proxy-addr/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/proxy-addr/package.json
rename to tests/tests_hugo/with_express/node_modules/proxy-addr/package.json
diff --git a/tests/tests_hugo/node_modules/qs/.editorconfig b/tests/tests_hugo/with_express/node_modules/qs/.editorconfig
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/.editorconfig
rename to tests/tests_hugo/with_express/node_modules/qs/.editorconfig
diff --git a/tests/tests_hugo/node_modules/qs/.eslintrc b/tests/tests_hugo/with_express/node_modules/qs/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/qs/.eslintrc
diff --git a/tests/tests_hugo/node_modules/qs/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/qs/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/qs/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/qs/.nycrc b/tests/tests_hugo/with_express/node_modules/qs/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/.nycrc
rename to tests/tests_hugo/with_express/node_modules/qs/.nycrc
diff --git a/tests/tests_hugo/node_modules/qs/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/qs/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/qs/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/qs/LICENSE.md b/tests/tests_hugo/with_express/node_modules/qs/LICENSE.md
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/LICENSE.md
rename to tests/tests_hugo/with_express/node_modules/qs/LICENSE.md
diff --git a/tests/tests_hugo/node_modules/qs/README.md b/tests/tests_hugo/with_express/node_modules/qs/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/README.md
rename to tests/tests_hugo/with_express/node_modules/qs/README.md
diff --git a/tests/tests_hugo/node_modules/qs/dist/qs.js b/tests/tests_hugo/with_express/node_modules/qs/dist/qs.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/dist/qs.js
rename to tests/tests_hugo/with_express/node_modules/qs/dist/qs.js
diff --git a/tests/tests_hugo/node_modules/qs/lib/formats.js b/tests/tests_hugo/with_express/node_modules/qs/lib/formats.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/lib/formats.js
rename to tests/tests_hugo/with_express/node_modules/qs/lib/formats.js
diff --git a/tests/tests_hugo/node_modules/qs/lib/index.js b/tests/tests_hugo/with_express/node_modules/qs/lib/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/lib/index.js
rename to tests/tests_hugo/with_express/node_modules/qs/lib/index.js
diff --git a/tests/tests_hugo/node_modules/qs/lib/parse.js b/tests/tests_hugo/with_express/node_modules/qs/lib/parse.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/lib/parse.js
rename to tests/tests_hugo/with_express/node_modules/qs/lib/parse.js
diff --git a/tests/tests_hugo/node_modules/qs/lib/stringify.js b/tests/tests_hugo/with_express/node_modules/qs/lib/stringify.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/lib/stringify.js
rename to tests/tests_hugo/with_express/node_modules/qs/lib/stringify.js
diff --git a/tests/tests_hugo/node_modules/qs/lib/utils.js b/tests/tests_hugo/with_express/node_modules/qs/lib/utils.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/lib/utils.js
rename to tests/tests_hugo/with_express/node_modules/qs/lib/utils.js
diff --git a/tests/tests_hugo/node_modules/qs/package.json b/tests/tests_hugo/with_express/node_modules/qs/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/package.json
rename to tests/tests_hugo/with_express/node_modules/qs/package.json
diff --git a/tests/tests_hugo/node_modules/qs/test/parse.js b/tests/tests_hugo/with_express/node_modules/qs/test/parse.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/test/parse.js
rename to tests/tests_hugo/with_express/node_modules/qs/test/parse.js
diff --git a/tests/tests_hugo/node_modules/qs/test/stringify.js b/tests/tests_hugo/with_express/node_modules/qs/test/stringify.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/test/stringify.js
rename to tests/tests_hugo/with_express/node_modules/qs/test/stringify.js
diff --git a/tests/tests_hugo/node_modules/qs/test/utils.js b/tests/tests_hugo/with_express/node_modules/qs/test/utils.js
similarity index 100%
rename from tests/tests_hugo/node_modules/qs/test/utils.js
rename to tests/tests_hugo/with_express/node_modules/qs/test/utils.js
diff --git a/tests/tests_hugo/node_modules/range-parser/HISTORY.md b/tests/tests_hugo/with_express/node_modules/range-parser/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/range-parser/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/range-parser/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/range-parser/LICENSE b/tests/tests_hugo/with_express/node_modules/range-parser/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/range-parser/LICENSE
rename to tests/tests_hugo/with_express/node_modules/range-parser/LICENSE
diff --git a/tests/tests_hugo/node_modules/range-parser/README.md b/tests/tests_hugo/with_express/node_modules/range-parser/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/range-parser/README.md
rename to tests/tests_hugo/with_express/node_modules/range-parser/README.md
diff --git a/tests/tests_hugo/node_modules/range-parser/index.js b/tests/tests_hugo/with_express/node_modules/range-parser/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/range-parser/index.js
rename to tests/tests_hugo/with_express/node_modules/range-parser/index.js
diff --git a/tests/tests_hugo/node_modules/range-parser/package.json b/tests/tests_hugo/with_express/node_modules/range-parser/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/range-parser/package.json
rename to tests/tests_hugo/with_express/node_modules/range-parser/package.json
diff --git a/tests/tests_hugo/node_modules/raw-body/HISTORY.md b/tests/tests_hugo/with_express/node_modules/raw-body/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/raw-body/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/raw-body/LICENSE b/tests/tests_hugo/with_express/node_modules/raw-body/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/LICENSE
rename to tests/tests_hugo/with_express/node_modules/raw-body/LICENSE
diff --git a/tests/tests_hugo/node_modules/raw-body/README.md b/tests/tests_hugo/with_express/node_modules/raw-body/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/README.md
rename to tests/tests_hugo/with_express/node_modules/raw-body/README.md
diff --git a/tests/tests_hugo/node_modules/raw-body/SECURITY.md b/tests/tests_hugo/with_express/node_modules/raw-body/SECURITY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/SECURITY.md
rename to tests/tests_hugo/with_express/node_modules/raw-body/SECURITY.md
diff --git a/tests/tests_hugo/node_modules/raw-body/index.d.ts b/tests/tests_hugo/with_express/node_modules/raw-body/index.d.ts
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/index.d.ts
rename to tests/tests_hugo/with_express/node_modules/raw-body/index.d.ts
diff --git a/tests/tests_hugo/node_modules/raw-body/index.js b/tests/tests_hugo/with_express/node_modules/raw-body/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/index.js
rename to tests/tests_hugo/with_express/node_modules/raw-body/index.js
diff --git a/tests/tests_hugo/node_modules/raw-body/package.json b/tests/tests_hugo/with_express/node_modules/raw-body/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/raw-body/package.json
rename to tests/tests_hugo/with_express/node_modules/raw-body/package.json
diff --git a/tests/tests_hugo/node_modules/safe-buffer/LICENSE b/tests/tests_hugo/with_express/node_modules/safe-buffer/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/safe-buffer/LICENSE
rename to tests/tests_hugo/with_express/node_modules/safe-buffer/LICENSE
diff --git a/tests/tests_hugo/node_modules/safe-buffer/README.md b/tests/tests_hugo/with_express/node_modules/safe-buffer/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/safe-buffer/README.md
rename to tests/tests_hugo/with_express/node_modules/safe-buffer/README.md
diff --git a/tests/tests_hugo/node_modules/safe-buffer/index.d.ts b/tests/tests_hugo/with_express/node_modules/safe-buffer/index.d.ts
similarity index 100%
rename from tests/tests_hugo/node_modules/safe-buffer/index.d.ts
rename to tests/tests_hugo/with_express/node_modules/safe-buffer/index.d.ts
diff --git a/tests/tests_hugo/node_modules/safe-buffer/index.js b/tests/tests_hugo/with_express/node_modules/safe-buffer/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/safe-buffer/index.js
rename to tests/tests_hugo/with_express/node_modules/safe-buffer/index.js
diff --git a/tests/tests_hugo/node_modules/safe-buffer/package.json b/tests/tests_hugo/with_express/node_modules/safe-buffer/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/safe-buffer/package.json
rename to tests/tests_hugo/with_express/node_modules/safe-buffer/package.json
diff --git a/tests/tests_hugo/node_modules/safer-buffer/LICENSE b/tests/tests_hugo/with_express/node_modules/safer-buffer/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/LICENSE
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/LICENSE
diff --git a/tests/tests_hugo/node_modules/safer-buffer/Porting-Buffer.md b/tests/tests_hugo/with_express/node_modules/safer-buffer/Porting-Buffer.md
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/Porting-Buffer.md
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/Porting-Buffer.md
diff --git a/tests/tests_hugo/node_modules/safer-buffer/Readme.md b/tests/tests_hugo/with_express/node_modules/safer-buffer/Readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/Readme.md
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/Readme.md
diff --git a/tests/tests_hugo/node_modules/safer-buffer/dangerous.js b/tests/tests_hugo/with_express/node_modules/safer-buffer/dangerous.js
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/dangerous.js
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/dangerous.js
diff --git a/tests/tests_hugo/node_modules/safer-buffer/package.json b/tests/tests_hugo/with_express/node_modules/safer-buffer/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/package.json
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/package.json
diff --git a/tests/tests_hugo/node_modules/safer-buffer/safer.js b/tests/tests_hugo/with_express/node_modules/safer-buffer/safer.js
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/safer.js
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/safer.js
diff --git a/tests/tests_hugo/node_modules/safer-buffer/tests.js b/tests/tests_hugo/with_express/node_modules/safer-buffer/tests.js
similarity index 100%
rename from tests/tests_hugo/node_modules/safer-buffer/tests.js
rename to tests/tests_hugo/with_express/node_modules/safer-buffer/tests.js
diff --git a/tests/tests_hugo/node_modules/send/HISTORY.md b/tests/tests_hugo/with_express/node_modules/send/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/send/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/send/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/send/LICENSE b/tests/tests_hugo/with_express/node_modules/send/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/send/LICENSE
rename to tests/tests_hugo/with_express/node_modules/send/LICENSE
diff --git a/tests/tests_hugo/node_modules/send/README.md b/tests/tests_hugo/with_express/node_modules/send/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/send/README.md
rename to tests/tests_hugo/with_express/node_modules/send/README.md
diff --git a/tests/tests_hugo/node_modules/send/SECURITY.md b/tests/tests_hugo/with_express/node_modules/send/SECURITY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/send/SECURITY.md
rename to tests/tests_hugo/with_express/node_modules/send/SECURITY.md
diff --git a/tests/tests_hugo/node_modules/send/index.js b/tests/tests_hugo/with_express/node_modules/send/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/send/index.js
rename to tests/tests_hugo/with_express/node_modules/send/index.js
diff --git a/tests/tests_hugo/node_modules/send/node_modules/ms/index.js b/tests/tests_hugo/with_express/node_modules/send/node_modules/ms/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/send/node_modules/ms/index.js
rename to tests/tests_hugo/with_express/node_modules/send/node_modules/ms/index.js
diff --git a/tests/tests_hugo/node_modules/send/node_modules/ms/license.md b/tests/tests_hugo/with_express/node_modules/send/node_modules/ms/license.md
similarity index 100%
rename from tests/tests_hugo/node_modules/send/node_modules/ms/license.md
rename to tests/tests_hugo/with_express/node_modules/send/node_modules/ms/license.md
diff --git a/tests/tests_hugo/node_modules/send/node_modules/ms/package.json b/tests/tests_hugo/with_express/node_modules/send/node_modules/ms/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/send/node_modules/ms/package.json
rename to tests/tests_hugo/with_express/node_modules/send/node_modules/ms/package.json
diff --git a/tests/tests_hugo/node_modules/send/node_modules/ms/readme.md b/tests/tests_hugo/with_express/node_modules/send/node_modules/ms/readme.md
similarity index 100%
rename from tests/tests_hugo/node_modules/send/node_modules/ms/readme.md
rename to tests/tests_hugo/with_express/node_modules/send/node_modules/ms/readme.md
diff --git a/tests/tests_hugo/node_modules/send/package.json b/tests/tests_hugo/with_express/node_modules/send/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/send/package.json
rename to tests/tests_hugo/with_express/node_modules/send/package.json
diff --git a/tests/tests_hugo/node_modules/serve-static/HISTORY.md b/tests/tests_hugo/with_express/node_modules/serve-static/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/serve-static/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/serve-static/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/serve-static/LICENSE b/tests/tests_hugo/with_express/node_modules/serve-static/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/serve-static/LICENSE
rename to tests/tests_hugo/with_express/node_modules/serve-static/LICENSE
diff --git a/tests/tests_hugo/node_modules/serve-static/README.md b/tests/tests_hugo/with_express/node_modules/serve-static/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/serve-static/README.md
rename to tests/tests_hugo/with_express/node_modules/serve-static/README.md
diff --git a/tests/tests_hugo/node_modules/serve-static/index.js b/tests/tests_hugo/with_express/node_modules/serve-static/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/serve-static/index.js
rename to tests/tests_hugo/with_express/node_modules/serve-static/index.js
diff --git a/tests/tests_hugo/node_modules/serve-static/package.json b/tests/tests_hugo/with_express/node_modules/serve-static/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/serve-static/package.json
rename to tests/tests_hugo/with_express/node_modules/serve-static/package.json
diff --git a/tests/tests_hugo/node_modules/setprototypeof/LICENSE b/tests/tests_hugo/with_express/node_modules/setprototypeof/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/LICENSE
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/LICENSE
diff --git a/tests/tests_hugo/node_modules/setprototypeof/README.md b/tests/tests_hugo/with_express/node_modules/setprototypeof/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/README.md
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/README.md
diff --git a/tests/tests_hugo/node_modules/setprototypeof/index.d.ts b/tests/tests_hugo/with_express/node_modules/setprototypeof/index.d.ts
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/index.d.ts
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/index.d.ts
diff --git a/tests/tests_hugo/node_modules/setprototypeof/index.js b/tests/tests_hugo/with_express/node_modules/setprototypeof/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/index.js
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/index.js
diff --git a/tests/tests_hugo/node_modules/setprototypeof/package.json b/tests/tests_hugo/with_express/node_modules/setprototypeof/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/package.json
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/package.json
diff --git a/tests/tests_hugo/node_modules/setprototypeof/test/index.js b/tests/tests_hugo/with_express/node_modules/setprototypeof/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/setprototypeof/test/index.js
rename to tests/tests_hugo/with_express/node_modules/setprototypeof/test/index.js
diff --git a/tests/tests_hugo/node_modules/side-channel/.eslintignore b/tests/tests_hugo/with_express/node_modules/side-channel/.eslintignore
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/.eslintignore
rename to tests/tests_hugo/with_express/node_modules/side-channel/.eslintignore
diff --git a/tests/tests_hugo/node_modules/side-channel/.eslintrc b/tests/tests_hugo/with_express/node_modules/side-channel/.eslintrc
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/.eslintrc
rename to tests/tests_hugo/with_express/node_modules/side-channel/.eslintrc
diff --git a/tests/tests_hugo/node_modules/side-channel/.github/FUNDING.yml b/tests/tests_hugo/with_express/node_modules/side-channel/.github/FUNDING.yml
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/.github/FUNDING.yml
rename to tests/tests_hugo/with_express/node_modules/side-channel/.github/FUNDING.yml
diff --git a/tests/tests_hugo/node_modules/side-channel/.nycrc b/tests/tests_hugo/with_express/node_modules/side-channel/.nycrc
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/.nycrc
rename to tests/tests_hugo/with_express/node_modules/side-channel/.nycrc
diff --git a/tests/tests_hugo/node_modules/side-channel/CHANGELOG.md b/tests/tests_hugo/with_express/node_modules/side-channel/CHANGELOG.md
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/CHANGELOG.md
rename to tests/tests_hugo/with_express/node_modules/side-channel/CHANGELOG.md
diff --git a/tests/tests_hugo/node_modules/side-channel/LICENSE b/tests/tests_hugo/with_express/node_modules/side-channel/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/LICENSE
rename to tests/tests_hugo/with_express/node_modules/side-channel/LICENSE
diff --git a/tests/tests_hugo/node_modules/side-channel/README.md b/tests/tests_hugo/with_express/node_modules/side-channel/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/README.md
rename to tests/tests_hugo/with_express/node_modules/side-channel/README.md
diff --git a/tests/tests_hugo/node_modules/side-channel/index.js b/tests/tests_hugo/with_express/node_modules/side-channel/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/index.js
rename to tests/tests_hugo/with_express/node_modules/side-channel/index.js
diff --git a/tests/tests_hugo/node_modules/side-channel/package.json b/tests/tests_hugo/with_express/node_modules/side-channel/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/package.json
rename to tests/tests_hugo/with_express/node_modules/side-channel/package.json
diff --git a/tests/tests_hugo/node_modules/side-channel/test/index.js b/tests/tests_hugo/with_express/node_modules/side-channel/test/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/side-channel/test/index.js
rename to tests/tests_hugo/with_express/node_modules/side-channel/test/index.js
diff --git a/tests/tests_hugo/node_modules/statuses/HISTORY.md b/tests/tests_hugo/with_express/node_modules/statuses/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/statuses/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/statuses/LICENSE b/tests/tests_hugo/with_express/node_modules/statuses/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/LICENSE
rename to tests/tests_hugo/with_express/node_modules/statuses/LICENSE
diff --git a/tests/tests_hugo/node_modules/statuses/README.md b/tests/tests_hugo/with_express/node_modules/statuses/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/README.md
rename to tests/tests_hugo/with_express/node_modules/statuses/README.md
diff --git a/tests/tests_hugo/node_modules/statuses/codes.json b/tests/tests_hugo/with_express/node_modules/statuses/codes.json
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/codes.json
rename to tests/tests_hugo/with_express/node_modules/statuses/codes.json
diff --git a/tests/tests_hugo/node_modules/statuses/index.js b/tests/tests_hugo/with_express/node_modules/statuses/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/index.js
rename to tests/tests_hugo/with_express/node_modules/statuses/index.js
diff --git a/tests/tests_hugo/node_modules/statuses/package.json b/tests/tests_hugo/with_express/node_modules/statuses/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/statuses/package.json
rename to tests/tests_hugo/with_express/node_modules/statuses/package.json
diff --git a/tests/tests_hugo/node_modules/toidentifier/HISTORY.md b/tests/tests_hugo/with_express/node_modules/toidentifier/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/toidentifier/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/toidentifier/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/toidentifier/LICENSE b/tests/tests_hugo/with_express/node_modules/toidentifier/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/toidentifier/LICENSE
rename to tests/tests_hugo/with_express/node_modules/toidentifier/LICENSE
diff --git a/tests/tests_hugo/node_modules/toidentifier/README.md b/tests/tests_hugo/with_express/node_modules/toidentifier/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/toidentifier/README.md
rename to tests/tests_hugo/with_express/node_modules/toidentifier/README.md
diff --git a/tests/tests_hugo/node_modules/toidentifier/index.js b/tests/tests_hugo/with_express/node_modules/toidentifier/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/toidentifier/index.js
rename to tests/tests_hugo/with_express/node_modules/toidentifier/index.js
diff --git a/tests/tests_hugo/node_modules/toidentifier/package.json b/tests/tests_hugo/with_express/node_modules/toidentifier/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/toidentifier/package.json
rename to tests/tests_hugo/with_express/node_modules/toidentifier/package.json
diff --git a/tests/tests_hugo/node_modules/type-is/HISTORY.md b/tests/tests_hugo/with_express/node_modules/type-is/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/type-is/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/type-is/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/type-is/LICENSE b/tests/tests_hugo/with_express/node_modules/type-is/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/type-is/LICENSE
rename to tests/tests_hugo/with_express/node_modules/type-is/LICENSE
diff --git a/tests/tests_hugo/node_modules/type-is/README.md b/tests/tests_hugo/with_express/node_modules/type-is/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/type-is/README.md
rename to tests/tests_hugo/with_express/node_modules/type-is/README.md
diff --git a/tests/tests_hugo/node_modules/type-is/index.js b/tests/tests_hugo/with_express/node_modules/type-is/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/type-is/index.js
rename to tests/tests_hugo/with_express/node_modules/type-is/index.js
diff --git a/tests/tests_hugo/node_modules/type-is/package.json b/tests/tests_hugo/with_express/node_modules/type-is/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/type-is/package.json
rename to tests/tests_hugo/with_express/node_modules/type-is/package.json
diff --git a/tests/tests_hugo/node_modules/unpipe/HISTORY.md b/tests/tests_hugo/with_express/node_modules/unpipe/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/unpipe/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/unpipe/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/unpipe/LICENSE b/tests/tests_hugo/with_express/node_modules/unpipe/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/unpipe/LICENSE
rename to tests/tests_hugo/with_express/node_modules/unpipe/LICENSE
diff --git a/tests/tests_hugo/node_modules/unpipe/README.md b/tests/tests_hugo/with_express/node_modules/unpipe/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/unpipe/README.md
rename to tests/tests_hugo/with_express/node_modules/unpipe/README.md
diff --git a/tests/tests_hugo/node_modules/unpipe/index.js b/tests/tests_hugo/with_express/node_modules/unpipe/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/unpipe/index.js
rename to tests/tests_hugo/with_express/node_modules/unpipe/index.js
diff --git a/tests/tests_hugo/node_modules/unpipe/package.json b/tests/tests_hugo/with_express/node_modules/unpipe/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/unpipe/package.json
rename to tests/tests_hugo/with_express/node_modules/unpipe/package.json
diff --git a/tests/tests_hugo/node_modules/utils-merge/.npmignore b/tests/tests_hugo/with_express/node_modules/utils-merge/.npmignore
similarity index 100%
rename from tests/tests_hugo/node_modules/utils-merge/.npmignore
rename to tests/tests_hugo/with_express/node_modules/utils-merge/.npmignore
diff --git a/tests/tests_hugo/node_modules/utils-merge/LICENSE b/tests/tests_hugo/with_express/node_modules/utils-merge/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/utils-merge/LICENSE
rename to tests/tests_hugo/with_express/node_modules/utils-merge/LICENSE
diff --git a/tests/tests_hugo/node_modules/utils-merge/README.md b/tests/tests_hugo/with_express/node_modules/utils-merge/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/utils-merge/README.md
rename to tests/tests_hugo/with_express/node_modules/utils-merge/README.md
diff --git a/tests/tests_hugo/node_modules/utils-merge/index.js b/tests/tests_hugo/with_express/node_modules/utils-merge/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/utils-merge/index.js
rename to tests/tests_hugo/with_express/node_modules/utils-merge/index.js
diff --git a/tests/tests_hugo/node_modules/utils-merge/package.json b/tests/tests_hugo/with_express/node_modules/utils-merge/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/utils-merge/package.json
rename to tests/tests_hugo/with_express/node_modules/utils-merge/package.json
diff --git a/tests/tests_hugo/node_modules/vary/HISTORY.md b/tests/tests_hugo/with_express/node_modules/vary/HISTORY.md
similarity index 100%
rename from tests/tests_hugo/node_modules/vary/HISTORY.md
rename to tests/tests_hugo/with_express/node_modules/vary/HISTORY.md
diff --git a/tests/tests_hugo/node_modules/vary/LICENSE b/tests/tests_hugo/with_express/node_modules/vary/LICENSE
similarity index 100%
rename from tests/tests_hugo/node_modules/vary/LICENSE
rename to tests/tests_hugo/with_express/node_modules/vary/LICENSE
diff --git a/tests/tests_hugo/node_modules/vary/README.md b/tests/tests_hugo/with_express/node_modules/vary/README.md
similarity index 100%
rename from tests/tests_hugo/node_modules/vary/README.md
rename to tests/tests_hugo/with_express/node_modules/vary/README.md
diff --git a/tests/tests_hugo/node_modules/vary/index.js b/tests/tests_hugo/with_express/node_modules/vary/index.js
similarity index 100%
rename from tests/tests_hugo/node_modules/vary/index.js
rename to tests/tests_hugo/with_express/node_modules/vary/index.js
diff --git a/tests/tests_hugo/node_modules/vary/package.json b/tests/tests_hugo/with_express/node_modules/vary/package.json
similarity index 100%
rename from tests/tests_hugo/node_modules/vary/package.json
rename to tests/tests_hugo/with_express/node_modules/vary/package.json
diff --git a/tests/tests_hugo/package.json b/tests/tests_hugo/with_express/package.json
similarity index 100%
rename from tests/tests_hugo/package.json
rename to tests/tests_hugo/with_express/package.json
diff --git a/tests/tests_hugo/with_express/server.js b/tests/tests_hugo/with_express/server.js
new file mode 100644
index 00000000..8964a63c
--- /dev/null
+++ b/tests/tests_hugo/with_express/server.js
@@ -0,0 +1,10 @@
+const express = require('express')
+const server = express()
+
+server.get('/', (req, res) => {
+ res.sendFile(__dirname + "/" + "index.html")
+})
+
+const port = 3000
+server.listen(port, console.log(`listening on port ${port} with express`));
+