Describe the bug
We migrated test from C# using Allure.NUnit to TS using playwright. But when I generate multiple test results then in final report is missing trend history chart and history run in testcases. I found some hint that i need to copy history from report to results which helps but still is missing build number in history trend chart and retries and history run are duplicated.
When i compare history-trand.json from C# and from playwright. In C# there is buildOrder attribute which is missing in allure-js history-trand.json
Run playwright tests with allure-playwright reporter
Run npx allure generate allure-results --clean
Run playwright tests again
Copy history folder from report to results
Run npx allure generate allure-results --clean
npx allure open ./allure-report/
in report there is no build number - cannot navigate to history reports
retries tab and history tab are duplicated
Expected behavior
When I run multiple test and multiple times run npx allure generate allure-results --clean it will generate report with correct history run like in C#
I will be grateful for any advice how to solve this issue.
**Environment "@playwright/test": "^1.39.0" "allure-playwright": "^2.9.2"
Describe the bug We migrated test from C# using Allure.NUnit to TS using playwright. But when I generate multiple test results then in final report is missing trend history chart and history run in testcases. I found some hint that i need to copy history from report to results which helps but still is missing build number in history trend chart and retries and history run are duplicated.
When i compare history-trand.json from C# and from playwright. In C# there is buildOrder attribute which is missing in allure-js history-trand.json
C# [{"buildOrder":27,"reportName":"AllureReport","data":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2}},{"buildOrder":26,"reportName":"AllureReport","data":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2}}, ... ]
Playwright: [{"data":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4}}, {"data":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4}}]
To Reproduce
Expected behavior When I run multiple test and multiple times run npx allure generate allure-results --clean it will generate report with correct history run like in C#
I will be grateful for any advice how to solve this issue.