wingbot 3.47.0 → 3.47.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
CHANGED
|
@@ -582,15 +582,14 @@ class ConversationTester {
|
|
|
582
582
|
let err = error;
|
|
583
583
|
|
|
584
584
|
const prefix = typeof textCase.rowNum === 'number'
|
|
585
|
-
? `
|
|
586
|
-
: '
|
|
585
|
+
? ` > FAILED on row ${textCase.rowNum}: `.padEnd(23, ' ')
|
|
586
|
+
: ' > FAILED: ';
|
|
587
587
|
|
|
588
588
|
if (Array.isArray(err)) {
|
|
589
|
-
|
|
590
|
-
err = err.join(`\n${pad}`);
|
|
589
|
+
err = err.join('\n ');
|
|
591
590
|
}
|
|
592
591
|
|
|
593
|
-
o += `\n${prefix}${err}`;
|
|
592
|
+
o += `\n${prefix}${err}\n`;
|
|
594
593
|
|
|
595
594
|
return { ok, o };
|
|
596
595
|
};
|