@camunda/task-testing 3.0.0-0 → 3.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,4 +10,3 @@
|
|
|
10
10
|
export function useSelectedElement(injector: any): [any | null, string | null];
|
|
11
11
|
export const SINGLE_TASK_SELECTION_REQUIRED_MESSAGE: "Select a task or subprocess to start testing.";
|
|
12
12
|
export const TASK_SELECTION_REQUIRED_MESSAGE: "Task testing is only supported for tasks and subprocesses. Select one to start testing.";
|
|
13
|
-
export const AD_HOC_SUBPROCESS_MESSAGE: "Task testing is not supported for tasks inside ad-hoc subprocesses.";
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
export function getName(element: any): string;
|
|
2
2
|
export function getType(element: any, injector: any): any;
|
|
3
3
|
export function getConcreteType(element: any): any;
|
|
4
|
-
/**
|
|
5
|
-
* Check if an element is a child of an ad-hoc subprocess.
|
|
6
|
-
*
|
|
7
|
-
* @param {Element} element
|
|
8
|
-
*
|
|
9
|
-
* @returns {boolean}
|
|
10
|
-
*/
|
|
11
|
-
export function isInsideAdHocSubProcess(element: Element): boolean;
|
|
12
4
|
/**
|
|
13
5
|
* Get parent process of an element.
|
|
14
6
|
*
|