monocart-reporter 2.8.0 → 2.8.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/lib/merge-data.js
CHANGED
|
@@ -258,9 +258,9 @@ const mergeDataList = async (dataList, options) => {
|
|
|
258
258
|
|
|
259
259
|
const artifacts = await mergeArtifacts(artifactsList, options);
|
|
260
260
|
|
|
261
|
-
// base on first one
|
|
261
|
+
// base on first one, do not change dataList (need for onData)
|
|
262
262
|
const mergedData = {
|
|
263
|
-
... dataList
|
|
263
|
+
... dataList[0]
|
|
264
264
|
};
|
|
265
265
|
|
|
266
266
|
// merge new options
|