exclude upload folder test as far we don't find a solution in chrome 73 (#4473)

* exclude upload folder test as far we don't find a solution in chrome 73

* exclude folder drag and drop test chrome 73

* fix test search

* Update .travis.yml

* xit C279918 C279916

* fix process-service cloud application list
This commit is contained in:
Eugenio Romano
2019-03-23 20:32:03 +00:00
committed by GitHub
parent 4a32fb920f
commit 6059690e79
8 changed files with 83 additions and 48 deletions

View File

@@ -51,16 +51,38 @@ module.exports = {
*/
adminPassword: PASSWORD,
hostBPM: "http://" + HOST_BPM,
hostBPM: "http://" + ( HOST_BPM || HOST),
clientIdSso: "alfresco",
hostSso: function () {
return "http://" + (HOST_SSO ? HOST_SSO : (PROXY + '/auth/realms/alfresco'));
let baseUrl;
if (HOST_SSO) {
baseUrl = HOST_SSO;
} else if (PROXY) {
baseUrl = PROXY;
} else {
baseUrl = HOST;
}
return `http://${baseUrl}/auth/realms/alfresco`;
}(),
hostIdentity: function () {
return "http://" + (HOST_IDENTITY ? HOST_IDENTITY : (PROXY + '/auth/admin/realms/alfresco'));
let baseUrl;
if (HOST_IDENTITY) {
baseUrl = HOST_IDENTITY;
} else if (HOST_SSO) {
baseUrl = HOST_SSO;
} else if (PROXY) {
baseUrl = PROXY;
} else {
baseUrl = HOST;
}
return `http://${baseUrl}/auth/admin/realms/alfresco`;
}()
},