Merge pull request #674 from morozgrafix/test_branch

Restructured Test Suite
This commit is contained in:
Michael Teeuw
2017-01-31 21:52:53 +01:00
committed by GitHub
13 changed files with 217 additions and 15 deletions

View File

@@ -37,7 +37,7 @@ var Server = function(config, callback) {
app.use("/modules", express.static(path.resolve(global.root_path + "/modules")));
app.use("/vendor", express.static(path.resolve(global.root_path + "/vendor")));
app.use("/translations", express.static(path.resolve(global.root_path + "/translations")));
app.use("/tests/confs", express.static(path.resolve(global.root_path + "/tests/confs")));
app.use("/tests/configs", express.static(path.resolve(global.root_path + "/tests/configs")));
app.get("/version", function(req,res) {
res.send(global.version);