@allurereport/reader 3.13.0 → 3.13.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.
@@ -191,6 +191,7 @@ const processCheckResult = async (visitor, result, originalFileName) => {
191
191
  const message = ensureString(details.message);
192
192
  const error = ensureString(details.error);
193
193
  await visitor.visitCheckResult({
194
+ id: ensureString(result.id, ""),
194
195
  name: ensureString(result.name, originalFileName.replace(/-check\.json$/, "")),
195
196
  status: convertCheckStatus(result.status),
196
197
  ...(tags.length ? { tags } : {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/reader",
3
- "version": "3.13.0",
3
+ "version": "3.13.1",
4
4
  "description": "Collection of utilities which helps to process different kind of test results as Allure Results",
5
5
  "keywords": [
6
6
  "allure",
@@ -26,9 +26,9 @@
26
26
  "lint:fix": "oxlint --import-plugin --fix src test features stories"
27
27
  },
28
28
  "dependencies": {
29
- "@allurereport/core-api": "3.13.0",
30
- "@allurereport/plugin-api": "3.13.0",
31
- "@allurereport/reader-api": "3.13.0",
29
+ "@allurereport/core-api": "3.13.1",
30
+ "@allurereport/plugin-api": "3.13.1",
31
+ "@allurereport/reader-api": "3.13.1",
32
32
  "fast-xml-parser": "^5.7.0"
33
33
  },
34
34
  "devDependencies": {