mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4587] Fix e2e tests (#4757)
* Fix user_info test * Removing duplication and hardcoded protocol * Fix linting and update script * Removing hardcoded protocol * Add protocol to scripts * Fix C260117 * Enable screenshots for cloud tests * Update process-services-cloud-e2e.sh
This commit is contained in:
@@ -24,7 +24,7 @@ module.exports = {
|
||||
/**
|
||||
* base
|
||||
*/
|
||||
url: "http://" + HOST,
|
||||
url: HOST,
|
||||
|
||||
/**
|
||||
* adf port
|
||||
@@ -51,7 +51,7 @@ module.exports = {
|
||||
*/
|
||||
adminPassword: PASSWORD,
|
||||
|
||||
hostBPM: "https://" + ( HOST_BPM || PROXY || HOST),
|
||||
hostBPM: HOST_BPM || PROXY || HOST,
|
||||
|
||||
clientIdSso: "alfresco",
|
||||
|
||||
@@ -66,7 +66,7 @@ module.exports = {
|
||||
baseUrl = HOST;
|
||||
}
|
||||
|
||||
return `https://${baseUrl}/auth/realms/alfresco`;
|
||||
return `${baseUrl}/auth/realms/alfresco`;
|
||||
}(),
|
||||
|
||||
hostIdentity: function () {
|
||||
@@ -83,7 +83,7 @@ module.exports = {
|
||||
}
|
||||
|
||||
|
||||
return `https://${baseUrl}/auth/admin/realms/alfresco`;
|
||||
return `${baseUrl}/auth/admin/realms/alfresco`;
|
||||
}()
|
||||
|
||||
},
|
||||
|
Reference in New Issue
Block a user