testaro 69.3.0 → 69.3.1
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/procs/doActs.js +3 -1
package/package.json
CHANGED
package/procs/doActs.js
CHANGED
|
@@ -1154,7 +1154,9 @@ exports.doActs = async (report, opts = {}) => {
|
|
|
1154
1154
|
if (standard === 'only') {
|
|
1155
1155
|
// Remove them.
|
|
1156
1156
|
localReport.acts.forEach(act => {
|
|
1157
|
-
|
|
1157
|
+
if (act.result?.nativeResult) {
|
|
1158
|
+
delete act.result.nativeResult;
|
|
1159
|
+
}
|
|
1158
1160
|
});
|
|
1159
1161
|
}
|
|
1160
1162
|
// If a catalog was created:
|