JS: add additional route handler registration tests

This commit is contained in:
Esben Sparre Andreasen
2020-02-10 12:08:29 +01:00
parent 117f009d17
commit 36b7574ac1
5 changed files with 209 additions and 4 deletions

View File

@@ -0,0 +1 @@
module.exports = { path: "bulky", handler: (req, res) => undefined };

View File

@@ -0,0 +1 @@
module.exports = { path: "/A", handler: (req, res) => undefined };

View File

@@ -0,0 +1,4 @@
let bulky = require("./handler-in-bulk-require");
module.exports = {
bulky: bulky
};