Test body is missing in (cucumber) testNG report
Hi, I'm submitting a bug report:
I use TestNGCucumberRunner to run cucumber test cases via TestNG and the report is successfully built but I do not see the test steps in the report, I only see setup and tear down.

Anyone know how to fix this or this a bug?
| Allure version | 2.9.0 | | Test framework | [email protected] | | Allure integration | [email protected] | | Generate report using gradle |
Hello, @pokeahontas
I have cucumber+testng environment and I had the same problem.
I decide to use Allure plugin for cucumber io.qameta.allure.cucumber5jvm.AllureCucumber5Jvm (Cucumber 5.6.0) and I added to CucumberOptions this:
plugin = {"io.qameta.allure.cucumber5jvm.AllureCucumber5Jvm"}
and dependency to build.gradle:
// https://mvnrepository.com/artifact/io.qameta.allure/allure-cucumber5-jvm implementation group: 'io.qameta.allure', name: 'allure-cucumber5-jvm', version: '2.13.2'
I think you can implement it in your way. Maybe it will help.
io.qameta.allure.cucumber5jvm.AllureCucumber5Jvm
the same issue but with this stack - gradle-testng-cucumber-allure....
Are there any solutions for this?
Additional code to build.gradle:
allure {
version = '2.8.1'
autoconfigure = false
aspectjweaver = true
useCucumberJVM() {
version = '2.13.2'
}
}
https://github.com/allure-framework/allure-java/issues/398#issuecomment-616418639