在CucumberJS中数据表中的转义管道不起作用

时间:2017-04-25 16:56:56

标签: cucumber gherkin cucumberjs

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

这是没有逃脱的内容:

| 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问题吗?

1 个答案:

答案 0 :(得分:0)

看起来是一个应该在较新版本中修复的已知issue