I've got a situation where I need to use a | in a table value. Godog accepts a \| as an escape sequence for the pipe, but Ghokin replaces it with |, breaking godog and cucumber.js:
Input:
Feature: Test
Scenario: Pipe in table value
Given I have a table:
| a | b \| c |
Output:
Feature: Test
Scenario: Pipe in table value
Given I have a table:
| a | b | c |
Expected:
Feature: Test
Scenario: Pipe in table value
Given I have a table:
| a | b \| c |
I've got a situation where I need to use a
|
in a table value. Godog accepts a\|
as an escape sequence for the pipe, but Ghokin replaces it with|
, breaking godog and cucumber.js:Input:
Output:
Expected: