ReferenceError:类型未定义

问题描述

我在测试时遇到此错误 ReferenceError:类型未定义 如何解决? 但是这里没有名为“ type”的变量。

jestExpect(sample.datasource-type).toEqual('Metadata');

解决方法

Javascript不接受标识符中的连字符。您需要将sample.datasource-type替换为sample["datasource-type"]