tests: Redirect `/tests/frontend/index.html` to `/tests/frontend/`

This commit is contained in:
Richard Hansen 2021-05-08 18:56:26 -04:00
parent 712b8c5769
commit 5d54c1657a
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ exports.expressCreateServer = (hookName, args, cb) => {
const rootTestFolder = path.join(settings.root, 'src/tests/frontend/');
args.app.get('/tests/frontend/index.html', (req, res) => {
res.redirect(['./', ...req.url.split('?').slice(1)].join('?'));
});
// The regexp /[\d\D]{0,}/ is equivalent to the regexp /.*/. The Express route path used here
// uses the more verbose /[\d\D]{0,}/ pattern instead of /.*/ because path-to-regexp v0.1.7 (the
// version used with Express v4.x) interprets '.' and '*' differently than regexp.