Fixed some issues in test files

This commit is contained in:
Angelos Chalaris
2018-06-18 19:07:48 +03:00
parent 1439ba9504
commit 977adb1198
31 changed files with 1390 additions and 2080 deletions

View File

@ -1,4 +1,4 @@
const httpsRedirect = () => {
if (location.protocol !== 'https:') location.replace('https:
if (location.protocol !== 'https:') location.replace('https://' + location.href.split('//')[1]);
};
module.exports = httpsRedirect;