Skip to content

Commit 2663661

Browse files
authored
Merge pull request #300215 from wsilveiranz/wsilveira-la-testing-framework
Logic Apps testing articles folder restructure
2 parents 0ebef6f + 7a45569 commit 2663661

21 files changed

+659
-639
lines changed

articles/logic-apps/.openpublishing.redirection.logic-apps.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@
964964
"source_path_from_root": "/articles/connectors/connectors-create-api-github.md",
965965
"redirect_url": "/connectors/github",
966966
"redirect_document_id": false
967-
},
967+
},
968968
{
969969
"source_path_from_root": "/articles/connectors/connectors-schema-migration.md",
970970
"redirect_url": "/azure/logic-apps/update-workflow-definition-language-schema",
@@ -999,6 +999,21 @@
999999
"source_path_from_root": "/articles/logic-apps/logic-apps-track-integration-account-custom-tracking-schema.md",
10001000
"redirect_url": "/azure/logic-apps/tracking-schemas-consumption",
10011001
"redirect_document_id": false
1002+
},
1003+
{
1004+
"source_path_from_root": "/articles/logic-apps/create-unit-tests-standard-workflow-definitions-visual-studio-code.md",
1005+
"redirect_url": "/azure/logic-apps/testing-framework/create-unit-tests-standard-workflow-definitions-visual-studio-code",
1006+
"redirect_document_id": true
1007+
},
1008+
{
1009+
"source_path_from_root": "/articles/logic-apps/create-unit-tests-standard-workflow-runs-visual-studio-code.md",
1010+
"redirect_url": "/azure/logic-apps/testing-framework/create-unit-tests-standard-workflow-runs-visual-studio-code",
1011+
"redirect_document_id": true
1012+
},
1013+
{
1014+
"source_path_from_root": "/articles/logic-apps/test-logic-apps-mock-data-static-results.md",
1015+
"redirect_url": "/azure/logic-apps/testing-framework/test-logic-apps-mock-data-static-results",
1016+
"redirect_document_id": true
10021017
}
10031018
]
1004-
}
1019+
}

articles/logic-apps/logic-apps-workflow-actions-triggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2340,7 +2340,7 @@ You can change the default runtime behavior for triggers and actions by adding t
23402340
| `runtimeConfiguration.concurrency.repetitions` | Integer | Change the [*default limit*](../logic-apps/logic-apps-limits-and-config.md#looping-debatching-limits) on the number of "for each" loop iterations that can run at the same time (concurrently or in parallel). <br><br>Setting the `repetitions` property to `1` works the same way as setting the `operationOptions` property to `SingleInstance`. You can set either property, but not both. <br><br>To change the default limit, see [Change "for each" concurrency](#change-for-each-concurrency) or [Run "for each" loops sequentially](#sequential-for-each). | Action: <br><br>[Foreach](#foreach-action) |
23412341
| `runtimeConfiguration.paginationPolicy.minimumItemCount` | Integer | For specific actions that support and have pagination turned on, this value specifies the *minimum* number of results to retrieve. <br><br>To turn on pagination, see [Get bulk data, items, or results by using pagination](../logic-apps/logic-apps-exceed-default-page-size-with-pagination.md) | Action: Varied |
23422342
| `runtimeConfiguration.secureData.properties` | Array | On many triggers and actions, these settings hide inputs, outputs, or both from the logic app's run history. <br><br>To learn more about safeguarding this data, see [Hide inputs and outputs from run history](../logic-apps/logic-apps-securing-a-logic-app.md#secure-data-code-view). | Most triggers and actions |
2343-
| `runtimeConfiguration.staticResult` | JSON Object | For actions that support and have the [static result](../logic-apps/test-logic-apps-mock-data-static-results.md) setting turned on, the `staticResult` object has these attributes: <br><br>- `name`, which references the current action's static result definition name, which appears inside the `staticResults` attribute in your logic app workflow's `definition` attribute. For more information, see [Static results - Schema reference for Workflow Definition Language](../logic-apps/logic-apps-workflow-definition-language.md#static-results). <br><br> - `staticResultOptions`, which specifies whether static results are `Enabled` or not for the current action. <br><br>To turn on static results, see [Test logic apps with mock data by setting up static results](../logic-apps/test-logic-apps-mock-data-static-results.md) | Action: Varied |
2343+
| `runtimeConfiguration.staticResult` | JSON Object | For actions that support and have the [static result](../logic-apps/testing-framework/test-logic-apps-mock-data-static-results.md) setting turned on, the `staticResult` object has these attributes: <br><br>- `name`, which references the current action's static result definition name, which appears inside the `staticResults` attribute in your logic app workflow's `definition` attribute. For more information, see [Static results - Schema reference for Workflow Definition Language](../logic-apps/logic-apps-workflow-definition-language.md#static-results). <br><br> - `staticResultOptions`, which specifies whether static results are `Enabled` or not for the current action. <br><br>To turn on static results, see [Test logic apps with mock data by setting up static results](../logic-apps/testing-framework/test-logic-apps-mock-data-static-results.md) | Action: Varied |
23442344

23452345
<a name="operation-options"></a>
23462346

0 commit comments

Comments
 (0)