How can I give unique suite names to two different test results combined into one report? #2980
-
Hello, I am trying to take the results from two different test suites, one which uses the Playwright Reporter, and the other which uses the Jest Reporter. Both of them output their results into However, Playwright creates "suites" based on browser. Jest creates "suites" based on each I want there to be two suites, one that says "Playwright Tests" and another that says "Jest Tests" that I can then drill down into. How can I accomplish this? One thing I noticed in the raw JSON for each test, the Playwright tests have
Whereas the Jest JSON do not:
However, setting the parameters globally in Jest doesn't seem to do anything. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think you could use GroupBy command like |
Beta Was this translation helpful? Give feedback.
I think you could use GroupBy command like
npx allure awesome allure-results/ --group-by "framework"