Revert "AAE-23545 Remove default application used for BE tests only (#10166)" (#10193)

This reverts commit 0821c74509270ff02975f51a1d4b348842d13fc1.
This commit is contained in:
Denys Vuika 2024-09-10 10:01:08 -04:00 committed by GitHub
parent 0821c74509
commit b1260e06ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 0 deletions

Binary file not shown.

View File

@ -223,6 +223,23 @@ export const ACTIVITI_CLOUD_APPS: any = {
ALFRESCO_PROCESS_TASKEMAIL_ENABLED: false
}
}
},
UAT_BE_DEFAULT_APP: {
name: 'uat-be-default-app',
file_location: (TAG = 'develop') =>
`https://github.com/Alfresco/alfresco-ng2-components/blob/${TAG}/e2e/resources/activiti7/uat-be-default-app.zip?raw=true`,
processes: {
'script-acs-process': 'script-acs-process'
},
security: [
{ role: 'ACTIVITI_ADMIN', groups: [], users: ['processadminuser'] },
{ role: 'ACTIVITI_USER', groups: ['sales', 'testgroup'], users: ['hruser', 'salesuser', 'testadmin', 'testuser'] }
],
variables: {
'process-runtime-service': {
ALFRESCO_PROCESS_TASKEMAIL_ENABLED: false
}
}
}
};