complexqa_frontend_core 1.10.7 → 1.10.8
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.
package/package.json
CHANGED
|
@@ -129,7 +129,10 @@ export class typeTestCaseStep extends familyTestDocumentation
|
|
|
129
129
|
element = this;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
let payload =
|
|
132
|
+
let payload = {
|
|
133
|
+
test_case_step_id: element.test_case_step_id
|
|
134
|
+
};
|
|
135
|
+
|
|
133
136
|
if (typeof callback?.before === 'function')
|
|
134
137
|
{
|
|
135
138
|
callback?.before({ payload });
|
|
@@ -171,7 +174,9 @@ export class typeTestCaseStep extends familyTestDocumentation
|
|
|
171
174
|
element = this;
|
|
172
175
|
}
|
|
173
176
|
|
|
174
|
-
let payload =
|
|
177
|
+
let payload = {
|
|
178
|
+
test_case_step_id: element.test_case_step_id
|
|
179
|
+
};
|
|
175
180
|
if (typeof callback?.before === 'function')
|
|
176
181
|
{
|
|
177
182
|
callback?.before({ payload });
|