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 observe the following when I run serenity:aggregate.
When I annotate @Disabled at class and method, they are showing correctly in the report.
When I include @Displayname, they are not shown in report.
Would like to check if this is intentional?
Scenario1: Only @Disabled test
Test 1: @Disabled at class = This ignored test not shown in report
Test 2 @Disabled at method = This ignored test shown in report
Scenario2: @Disabled test && @Displayname
Test 1: @Disabled at class + @Displayname = This ignored test not shown in report
Test 2: @Disabled at method + @Displayname = This ignored test not shown in report
What did you expect to happen?
Report output with @Displayname expect to be same as without @Displayname
Serenity BDD version
4.1.10
JDK version
17
Execution environment
windows, chrome
How to reproduce the bug.
@ExtendWith(SerenityJUnit5Extension.class)
public class example {
@Test
@Disabled
@Displayname
public void exampleTest() {
}
}
How can we make it happen?
Work on this myself and propose a PR (with Serenity BDD team guidance)
The text was updated successfully, but these errors were encountered:
What happened?
I observe the following when I run serenity:aggregate.
When I annotate
@Disabled
at class and method, they are showing correctly in the report.When I include
@Displayname
, they are not shown in report.Would like to check if this is intentional?
Scenario1: Only
@Disabled
testTest 1:
@Disabled
at class = This ignored test not shown in reportTest 2
@Disabled
at method = This ignored test shown in reportScenario2:
@Disabled
test &&@Displayname
Test 1:
@Disabled
at class +@Displayname
= This ignored test not shown in reportTest 2:
@Disabled
at method +@Displayname
= This ignored test not shown in reportWhat did you expect to happen?
Report output with
@Displayname
expect to be same as without@Displayname
Serenity BDD version
4.1.10
JDK version
17
Execution environment
windows, chrome
How to reproduce the bug.
How can we make it happen?
Work on this myself and propose a PR (with Serenity BDD team guidance)
The text was updated successfully, but these errors were encountered: