testaro 58.3.4 → 58.3.5
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/run.js +3 -1
package/package.json
CHANGED
package/run.js
CHANGED
|
@@ -600,7 +600,9 @@ const doActs = async (report, opts = {}) => {
|
|
|
600
600
|
});
|
|
601
601
|
console.log(`${message} (observer notified)`);
|
|
602
602
|
}
|
|
603
|
-
catch (error) {
|
|
603
|
+
catch (error) {
|
|
604
|
+
console.log(`${message} (observer notification failed: ${errorStart(error)})`);
|
|
605
|
+
}
|
|
604
606
|
}
|
|
605
607
|
// Otherwise, i.e. if no progress callback has been provided:
|
|
606
608
|
else {
|