extentreports-java
extentreports-java copied to clipboard
Ability to see only latest test's status
Summary
I'm using testNG. After running tests I re-run again those one failed. I would like to be able to found easily from report test passed in first and second run and failed in second run. This is related to e.g. https://github.com/anshooarora/extentreports-java/issues/806
Current Behavior
I use setAppendExisting(true) to have all results in the same report. Unfortunately it gives me (after one run and then re-run of failed testes) something like that: (in the left 'Tests' column) TEST1 PASS TEST2 PASS TEST3 FAIL TEST4 FAIL TEST3 PASS TEST4 FAIL
Expected Behavior
What I would like from the example above is to have:
TEST1 PASS TEST2 PASS TEST3 PASS TEST4 FAIL
This could be extra view added to the one as in 'Current Behavior' or just replace it.
Also when I click on "TEST3 PASS" I would prefer to see both runs (currently I could do it by manually manipulating html file with results..but for longer sessions this is impossible to do ;).
Any chance for having it in extent report?