I got this error while testing, ReferenceError: type is not defined how to resolve it ?? but there is no variable named "type" here.
jestExpect(sample.datasource-type).toEqual('metadata');
I got this error while testing, ReferenceError: type is not defined how to resolve it ?? but there is no variable named "type" here.
jestExpect(sample.datasource-type).toEqual('metadata');
Javascript does not accept hyphens in identifiers. You need to replace sample.datasource-type
with sample["datasource-type"]