React 和 Typescript - 由于类型错误“将类型'Global & typeof globalThis' 转换为类型'GlobalWithFetchMock'...”,测试失败

问题描述

使用 React 和 Typescript 非常棒,但有时会导致令人头疼的问题。在这种情况下,我所有的测试都失败了,并出现了与 jest-fetch-mock 相关的相同错误:

> NODE_ENV=test jest
 FAIL  src/store/index.test.tsx
  ● Test suite failed to run
    src/setupTests.ts:6:43 - error TS2352: Conversion of type 'Global & typeof globalThis' to type 'GlobalWithFetchMock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional,convert the expression to 'unknown' first.
      Property 'fetchMock' is missing in type 'Global & typeof globalThis' but required in type 'GlobalWithFetchMock'.
    6 const customGlobal: GlobalWithFetchMock = global as GlobalWithFetchMock
                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      node_modules/jest-fetch-mock/types/index.d.ts:15:5
        15     fetchMock: FetchMock;
               ~~~~~~~~~
        'fetchMock' is declared here.

setupTests.ts 文件中没有任何变化,因此可能是由某些依赖项的更新引起的。 我尝试删除 node_modules 并重新安装,清除缓存并更改节点版本,但没有任何改变。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)