找不到名称 'before'.ts(2304)
Cannot find name 'before'.ts(2304)
我在打字稿中使用 jest,但在“之前”调用时遇到错误:
Cannot find name 'before'.ts(2304)
我已经安装了@types/jest。
更新:看起来 jest 以前没有 - 可能是来自不同测试框架的测试,所以在这种情况下,Typescript 正确识别了一个不存在的函数。
检查这些global methods, there is no before
method. I think you are looking for beforeAll。
我在打字稿中使用 jest,但在“之前”调用时遇到错误:
Cannot find name 'before'.ts(2304)
我已经安装了@types/jest。
更新:看起来 jest 以前没有 - 可能是来自不同测试框架的测试,所以在这种情况下,Typescript 正确识别了一个不存在的函数。
检查这些global methods, there is no before
method. I think you are looking for beforeAll。