gpt4 book ai didi

typescript Jest 全局变量示例

转载 作者:行者123 更新时间:2023-12-04 03:53:00 31 4
gpt4 key购买 nike

这是同样的问题,在这里正确回答 jest global variable example ,但值得关注的是 Typescript。

console.log(__DEV__);
结果是:
error TS2304: Cannot find name __DEV__.
全局变量 __DEV__在 package.json 中定义为:
  "jest": {
"globals": {
"__DEV__": true
}
}
有人有解决方案或解决方法吗?
相关 Jest 文档: https://jestjs.io/docs/en/next/configuration#globals-object

最佳答案

在 ts-jest 中,有必要用“ts-jest”包装一些配置值:

  "jest": {
"globals": {
"ts-jest": {
"__DEV__": true
}
}
}
并且可以使用以下代码访问:
console.log((global as any).__DEV__
在这里找到答案 https://kulshekhar.github.io/ts-jest/docs/

关于 typescript Jest 全局变量示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64172325/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com