monocart-reporter 2.9.11 → 2.9.13

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/lib/index.js CHANGED
@@ -156,7 +156,8 @@ class MonocartReporter {
156
156
 
157
157
  addTestLog(test, log) {
158
158
  if (test && test.logs) {
159
- test.logs.push(log);
159
+ // log could be Buffer
160
+ test.logs.push(`${log}`);
160
161
  }
161
162
  }
162
163