Table 空手道 v1 中的问题

Table issue in karate v1

升级到空手道 v1.0.1 后,table 数据类型有问题,这是我的场景和返回的错误:

Scenario: table test
* table table1 =
| column |
| 'row1' |
| 'row2' |
* print table1

* print table1
>>>> js failed:
01: karate.log('[print]',table1)
<<<<
org.graalvm.polyglot.PolyglotException: ReferenceError: "table1" is not defined
- <js>.:program(Unnamed:1)

我降级到v0.9.6来查看,没有出现这个问题

不需要 = 符号。

* table table1
| column |
| 'row1' |
| 'row2' |
* print table1

欢迎您通过开源 PR 更新文档。