@allurereport/plugin-awesome 3.0.0-beta.26 → 3.0.0-beta.27

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.
Files changed (2) hide show
  1. package/dist/plugin.js +5 -1
  2. package/package.json +6 -6
package/dist/plugin.js CHANGED
@@ -126,11 +126,15 @@ export class AwesomePlugin {
126
126
  status: worstStatus ?? "passed",
127
127
  duration,
128
128
  createdAt,
129
- withTestResultsLinks: true,
130
129
  plugin: "Awesome",
131
130
  newTests: newTrs.map(convertToSummaryTestResult),
132
131
  flakyTests: flakyTrs.map(convertToSummaryTestResult),
133
132
  retryTests: retryTrs.map(convertToSummaryTestResult),
133
+ meta: {
134
+ reportId: context.reportUuid,
135
+ singleFile: this.options.singleFile ?? false,
136
+ withTestResultsLinks: true,
137
+ },
134
138
  };
135
139
  }
136
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-awesome",
3
- "version": "3.0.0-beta.26",
3
+ "version": "3.0.0-beta.27",
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-beta.26",
34
- "@allurereport/core-api": "3.0.0-beta.26",
35
- "@allurereport/plugin-api": "3.0.0-beta.26",
36
- "@allurereport/web-awesome": "3.0.0-beta.26",
37
- "@allurereport/web-commons": "3.0.0-beta.26",
33
+ "@allurereport/charts-api": "3.0.0-beta.27",
34
+ "@allurereport/core-api": "3.0.0-beta.27",
35
+ "@allurereport/plugin-api": "3.0.0-beta.27",
36
+ "@allurereport/web-awesome": "3.0.0-beta.27",
37
+ "@allurereport/web-commons": "3.0.0-beta.27",
38
38
  "d3-shape": "^3.2.0",
39
39
  "handlebars": "^4.7.8"
40
40
  },