ctco / zephyr-sync

Tool to synchronize test results to Zephyr (test management add-on for JIRA)
21 stars 28 forks source link

Scenario description should be synced with JIRA issue description #12

Closed DmitryPrigodich closed 7 years ago

DmitryPrigodich commented 7 years ago

There should be possibility to sync report scenario description with JIRA issue description. Instead of current implementation when attribute is filled via tag (@Description=) we should use json report native possibilities: "name": "Scenario name", "description": "Scenario description", "id": "some---generated---id", For CucumberReport.transform(), something like that should work: test.setDescription( scenario.getDescription() == null ? (feature.getDescription() == null ? "" : feature.getDescription()) : scenario.getDescription());

IgorGursky commented 7 years ago

Resolved in Pull Request #13