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
[Core] Mark pending steps as failed in teamcity plugin (#2264)
* [Core] Mark pending steps as failed in teamcity plugin
The teamcity plugin communicates test results to IntelliJ IDEA using teamcity
service messages[1]. Currently the teamcity plugin marks pending steps as
skipped rather then failed. This is inconsistent with the changes from #1960
in which pending steps are considered a test failure.
1: https://www.jetbrains.com/help/teamcity/service-messages.html
* [Core] Fix teamcity link for cucumber-java8 hooks
The teamcity plugin communicates test results to IntelliJ IDEA using teamcity
service messages[1]. These messages can link to files using a url-like protocol.
The code use to convert code locations from cucumber-java8 step definitions
did not correctly extract the method from this string representation.
"##teamcity[testFailed timestamp = '1970-01-01T12:00:00.000+0000' duration = '0' message = 'Step undefined' details = 'You can implement this step and 1 other step(s)using the snippet(s) below:|n|ntest snippet 0|ntest snippet 1|n' name = 'first step']"));
216
+
"##teamcity[testFailed timestamp = '1970-01-01T12:00:00.000+0000' duration = '0' message = 'Step undefined' details = 'You can implement this step and 1 other step(s) using the snippet(s) below:|n|ntest snippet 0|ntest snippet 1|n' name = 'first step']"));
0 commit comments