[ACA-4227] [APS] Create a script to check Process Services Management plugin status before running e2e tests (#6486)

* [ACA-4227] Create a generic script to check plugin status before running e2e tests by plugin name

* * Added governace env check

* * Added AAE plugin check

* * Updated script

* small improvements, add uiName parameter for the command

* * Fixed comments

* * Moved check-plugin script in the common place

* * Added table format to show plugin status

Co-authored-by: adomi <ardit.domi@alfresco.com>
This commit is contained in:
siva kumar
2021-01-06 17:26:24 +05:30
committed by GitHub
parent 1f8082d8e1
commit 09b4df5af7
8 changed files with 413 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export enum PluginTarget {
processService = 'processService',
processAutomation = 'processAutomation',
governance = 'governance'
}
export interface PluginInterface {
name: string;
host: string;
appName: string;
uiName: string;
}