You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I actually noticed 2 different problems, suspect that second is side effect of first one.
Problem 1: On allure Server in test case details full test name is displayed like:
().Class/Method
Steps to reproduce:
Generate allure-results using xcresults tool
Upload results to Allure Server
Open test cases tree, select any test, check full name in test case panel header
Expected result: Full name is properly populated: Group.Class.Method
Actual result: ().Class/Method
Problem 2:
Generate allure-results using xcresults tool
Upload results to Allure Server
Open Launch overview, check Suites widget
Expected result: suites widget is properly populated
Actual result: suites widget is empty
The text was updated successfully, but these errors were encountered:
Hey, I still see that the suite name is not populated in allure results.
XCTestResults:
| UITestingTarget
| ---- Class 1
| -------- test 1
| -------- test 2
| ---- Class 2
| -------- test A
| -------- test B
Allure Results
| UITestingTarget
| ---- test 1
| ---- test 2
| ---- test A
| ---- test B
@kristfoograb would you be able to fix it? I believe it's this line that causes the issue. ExportCommand.getTestMeta() exportMeta.label(SUITE, testableSummary.get(TARGET_NAME).get(VALUE).asText());
Where the Suite should be parsed from testable summary instead of the target name.
I actually noticed 2 different problems, suspect that second is side effect of first one.
Problem 1: On allure Server in test case details full test name is displayed like:
().Class/Method
Steps to reproduce:
Expected result: Full name is properly populated: Group.Class.Method
Actual result: ().Class/Method
Problem 2:
Expected result: suites widget is properly populated
Actual result: suites widget is empty
The text was updated successfully, but these errors were encountered: