Feature: A scenario outline # COMMENT Scenario Outline: Given I add and # comment When I pass a table argument | foo | bar | | bar | baz | #comment Then I the result should be # comment And the table should be properly escaped: | \|a | b | c | | 1 | \|2 | 3 | | 2 | 3 | \|4 | #comment Examples: | a | b | c | | 1 | \|2 | 3 | | 2 | 3 | 4 |