We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d9d594 commit fcc8bb9Copy full SHA for fcc8bb9
packages/backend/src/helpers/compute-for-each-parameters.ts
@@ -93,15 +93,6 @@ export function computeForEachParameters({
93
let forEachKeyPath = get(data, keyPath)
94
const currentStepIndex = stepPositions?.[executionStep?.stepId] || -1
95
96
- if (testRun) {
97
- forEachKeyPath = String(forEachKeyPath).replace(FOR_EACH_ITERATION_KEY, '0')
98
- } else if (metadata?.iteration) {
99
- forEachKeyPath = String(forEachKeyPath).replace(
100
- FOR_EACH_ITERATION_KEY,
101
- `${metadata.iteration - 1}`,
102
- )
103
- }
104
-
105
if (testRun || metadata?.iteration) {
106
forEachKeyPath = String(forEachKeyPath).replace(
107
FOR_EACH_ITERATION_KEY,
0 commit comments