@allurereport/plugin-agent 3.8.2 → 3.9.0

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 +2 -2
  2. package/package.json +5 -4
package/dist/plugin.js CHANGED
@@ -1766,7 +1766,7 @@ const buildRunAndTestFindings = (params) => {
1766
1766
  };
1767
1767
  const listVisibleTestLayouts = async (params) => {
1768
1768
  const { outputDir, store } = params;
1769
- const tests = (await store.allTestResults({ includeHidden: false })).sort(compareTestResultsByStatusThenName);
1769
+ const tests = (await store.allTestResults({ includeRetries: false })).sort(compareTestResultsByStatusThenName);
1770
1770
  const layouts = [];
1771
1771
  const slugsByEnvironment = new Map();
1772
1772
  for (const tr of tests) {
@@ -1866,7 +1866,7 @@ const buildEntries = async (params) => {
1866
1866
  };
1867
1867
  const buildSnapshot = async (params) => {
1868
1868
  const { outputDir, store, expectations, expectationLoadFindings, createFinding } = params;
1869
- const stats = await store.testsStatistic((testResult) => !testResult.hidden);
1869
+ const stats = await store.testsStatistic((testResult) => !testResult.isRetry);
1870
1870
  const entries = await buildEntries({
1871
1871
  outputDir,
1872
1872
  store,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-agent",
3
- "version": "3.8.2",
3
+ "version": "3.9.0",
4
4
  "description": "Allure Agent Plugin – AI-friendly markdown report generator",
5
5
  "keywords": [
6
6
  "agent",
@@ -31,14 +31,15 @@
31
31
  "lint:fix": "oxlint --import-plugin --fix src test features stories"
32
32
  },
33
33
  "dependencies": {
34
- "@allurereport/core-api": "3.8.2",
35
- "@allurereport/plugin-api": "3.8.2",
34
+ "@allurereport/core-api": "3.9.0",
35
+ "@allurereport/plugin-api": "3.9.0",
36
36
  "yaml": "^2.8.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@allurereport/reader-api": "3.8.2",
39
+ "@allurereport/reader-api": "3.9.0",
40
40
  "@types/node": "^20.17.9",
41
41
  "@vitest/runner": "^2.1.9",
42
+ "allure-js-commons": "^3.3.3",
42
43
  "allure-vitest": "^3.3.3",
43
44
  "rimraf": "^6.0.1",
44
45
  "typescript": "^5.6.3",