mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
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:
@@ -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`;
|
||||
}()
|
||||
|
||||
},
|
||||
|
Reference in New Issue
Block a user