CucumberJS'中数据表中的逃生管道;行不通

CucumberJS'中数据表中的逃生管道;行不通,cucumber,gherkin,cucumberjs,Cucumber,Gherkin,Cucumberjs,我试图避开数据表中的管道,但它只适用于第一个管道 以下是不带转义的内容: | name | address | phone number| | John | 123 | Street Name | City | 1234567890 | 以下是逃逸的例子: | name | address | phone number| | John | 123 \| Street Name \| City | 12345678

我试图避开数据表中的管道,但它只适用于第一个管道

以下是不带转义的内容:

| name | address                   | phone number|
| John | 123 | Street Name | City  | 1234567890  |
以下是逃逸的例子:

| name | address                     | phone number|
| John | 123 \| Street Name \| City  | 1234567890  |
但是当我使用CucumberJS来使用这个表时,我得到了错误,上面的解释是
123 | Street Name\| City
,第二个反斜杠不起作用

有人知道问题是什么吗?这是CucumberJS问题吗?

看起来是一个已知的问题,应该在新版本中修复