File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
cucumber-core/src/main/java/io/cucumber/core/plugin Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,8 @@ public class TeamCityPlugin implements EventListener {
114
114
private final List <SnippetsSuggestedEvent > suggestions = new ArrayList <>();
115
115
private final TeamCityCommandWriter out ;
116
116
117
+ // TODO: Does not work with concurrency
118
+ // https://github.com/cucumber/cucumber-jvm/issues/3042
117
119
private List <TreeNode > currentPath = new ArrayList <>();
118
120
private Pickle currentPickle ;
119
121
@@ -494,6 +496,8 @@ private String escape(String source) {
494
496
if (source == null ) {
495
497
return "" ;
496
498
}
499
+ // https://www.jetbrains.com/help/teamcity/service-messages.html#Escaped+Values
500
+ // TODO: Missing \\uXXXX
497
501
return source
498
502
.replace ("|" , "||" )
499
503
.replace ("'" , "|'" )
You can’t perform that action at this time.
0 commit comments