extent-framework / extentreports-java

Extent Reporting Library, Java
http://extentreports.com
Apache License 2.0
224 stars 127 forks source link

Adds the test description to the card body #364

Closed eliaslecomte closed 1 year ago

eliaslecomte commented 2 years ago

We use the @description annotation to add more meaning to a test. This PR also adds it to the reporting 🥳 on a node level.

@Test(testName = "tests login button", description = "This test clicks the login button. ")
public void testLoginButton() {
    // test here
}
anshooarora commented 1 year ago

Thanks!