@allurereport/core 3.0.0-beta.8 → 3.0.0-beta.9

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.
@@ -174,6 +174,7 @@ const convertSteps = (stateData, steps) => steps?.filter(notNull)?.map((step) =>
174
174
  const convertStep = (stateData, step) => {
175
175
  if (step.type === "step") {
176
176
  return {
177
+ stepId: md5(`${step.name}${step.start}`),
177
178
  name: step.name ?? __unknown,
178
179
  status: step.status ?? defaultStatus,
179
180
  steps: convertSteps(stateData, step.steps),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/core",
3
- "version": "3.0.0-beta.8",
3
+ "version": "3.0.0-beta.9",
4
4
  "description": "Collection of generic Allure utilities used across the entire project",
5
5
  "keywords": [
6
6
  "allure"
@@ -25,17 +25,18 @@
25
25
  "test": "vitest run"
26
26
  },
27
27
  "dependencies": {
28
- "@allurereport/core-api": "3.0.0-beta.8",
29
- "@allurereport/plugin-api": "3.0.0-beta.8",
30
- "@allurereport/plugin-awesome": "3.0.0-beta.8",
31
- "@allurereport/plugin-classic": "3.0.0-beta.8",
32
- "@allurereport/plugin-csv": "3.0.0-beta.8",
33
- "@allurereport/plugin-log": "3.0.0-beta.8",
34
- "@allurereport/plugin-progress": "3.0.0-beta.8",
35
- "@allurereport/plugin-slack": "3.0.0-beta.8",
36
- "@allurereport/plugin-testplan": "3.0.0-beta.8",
37
- "@allurereport/reader": "3.0.0-beta.8",
38
- "@allurereport/reader-api": "3.0.0-beta.8",
28
+ "@allurereport/core-api": "3.0.0-beta.9",
29
+ "@allurereport/plugin-allure2": "3.0.0-beta.9",
30
+ "@allurereport/plugin-api": "3.0.0-beta.9",
31
+ "@allurereport/plugin-awesome": "3.0.0-beta.9",
32
+ "@allurereport/plugin-classic": "3.0.0-beta.9",
33
+ "@allurereport/plugin-csv": "3.0.0-beta.9",
34
+ "@allurereport/plugin-log": "3.0.0-beta.9",
35
+ "@allurereport/plugin-progress": "3.0.0-beta.9",
36
+ "@allurereport/plugin-slack": "3.0.0-beta.9",
37
+ "@allurereport/plugin-testplan": "3.0.0-beta.9",
38
+ "@allurereport/reader": "3.0.0-beta.9",
39
+ "@allurereport/reader-api": "3.0.0-beta.9",
39
40
  "markdown-it": "^14.1.0"
40
41
  },
41
42
  "devDependencies": {