You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/test-logic-apps-mock-data-static-results.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,31 @@ This guide shows how to set up mock outputs for an action in a Consumption or St
30
30
31
31
*[Create an example Standard logic app workflow in single-tenant Azure Logic Apps](create-single-tenant-workflows-azure-portal.md)
32
32
33
+
## Limitations
34
+
35
+
- This capability is available only for actions, not triggers.
36
+
37
+
- No option currently exists to dynamically or programmatically enable and disable this capability.
38
+
39
+
- No indications exist at the logic app level that this capability is enabled. The following list describes where you can find indications that this capability is enabled:
40
+
41
+
- On the action shape, the lower-right corner shows the test beaker icon ().
42
+
43
+
- On the action's details pane, on **Testing** tab, the **Static Result** option is enabled.
44
+
45
+
- In code view, the action's JSON definition includes the following properties in the **`runtimeConfiguration`** JSON object:
46
+
47
+
```json
48
+
"runtimeConfiguration": {
49
+
"staticResult": {
50
+
"name": "{action-name-ordinal}",
51
+
"staticResultoptions": "Enabled"
52
+
}
53
+
}
54
+
```
55
+
56
+
- In the workflow's run history, the **Static Results** column appears with the word **Enabled** next to any run where at least one action has this capability enabled.
0 commit comments