@teamkeel/testing-runtime 0.402.1 → 0.404.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.
- package/package.json +1 -1
- package/src/Executor.mjs +5 -1
package/package.json
CHANGED
package/src/Executor.mjs
CHANGED
|
@@ -183,7 +183,11 @@ function parseOutputs(data) {
|
|
|
183
183
|
) {
|
|
184
184
|
const arr = [];
|
|
185
185
|
for (let item of value) {
|
|
186
|
-
|
|
186
|
+
if (item.key && item.size && item.filename && item.contentType) {
|
|
187
|
+
arr.push(File.fromDbRecord(item));
|
|
188
|
+
} else {
|
|
189
|
+
arr.push(parseOutputs(item));
|
|
190
|
+
}
|
|
187
191
|
}
|
|
188
192
|
row[key] = arr;
|
|
189
193
|
} else {
|