@allurereport/plugin-awesome 3.0.0 → 3.0.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.
@@ -188,7 +188,7 @@ const buildTreeByTitlePath = (tests) => {
188
188
  };
189
189
  };
190
190
  const buildTreeByLabelsAndTitlePathCombined = (tests, labels) => createTreeByLabelsAndTitlePath(tests, labels, leafFactory, undefined, (group, leaf) => incrementStatistic(group.statistic, leaf.status));
191
- const leafFactory = ({ id, name, status, duration, flaky, start, transition, retry, retriesCount, }) => ({
191
+ const leafFactory = ({ id, name, status, duration, flaky, start, retry, retriesCount, transition, tooltips, }) => ({
192
192
  nodeId: id,
193
193
  name,
194
194
  status,
@@ -198,6 +198,7 @@ const leafFactory = ({ id, name, status, duration, flaky, start, transition, ret
198
198
  retry,
199
199
  retriesCount,
200
200
  transition,
201
+ tooltips,
201
202
  });
202
203
  export const generateEnvironmentJson = async (writer, env) => {
203
204
  await writer.writeWidget("allure_environment.json", env);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-awesome",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Allure Awesome Plugin – brand new HTML report with modern design and new features",
5
5
  "keywords": [
6
6
  "allure",
@@ -30,11 +30,11 @@
30
30
  "test": "rimraf ./out && vitest run"
31
31
  },
32
32
  "dependencies": {
33
- "@allurereport/charts-api": "3.0.0",
34
- "@allurereport/core-api": "3.0.0",
35
- "@allurereport/plugin-api": "3.0.0",
36
- "@allurereport/web-awesome": "3.0.0",
37
- "@allurereport/web-commons": "3.0.0",
33
+ "@allurereport/charts-api": "3.0.1",
34
+ "@allurereport/core-api": "3.0.1",
35
+ "@allurereport/plugin-api": "3.0.1",
36
+ "@allurereport/web-awesome": "3.0.1",
37
+ "@allurereport/web-commons": "3.0.1",
38
38
  "d3-shape": "^3.2.0",
39
39
  "handlebars": "^4.7.8"
40
40
  },