Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在测试时收到此错误,ReferenceError: type is not defined如何解决?但这里没有名为“type”的变量。
jestExpect(sample.datasource-type).toEqual('metadata');
Javascript does not accept hyphens in identifiers. You need to replace sample.datasource-type with sample["datasource-type"]
sample.datasource-type
sample["datasource-type"]