我刚开始将Jest与React Native结合使用。我们已经构建了很多应用程序。我正在尝试仅运行React Native提供的默认测试并收到错误:
Cannot find module 'ErrorUtils' from 'index.js'
分别用于__tests__/index.ios.js
和__tests__/android.ios.js
。 ErrorUtils
是我在顶层index.js文件中导入的标准React Native模块,该文件又是从上述两个测试文件中导入的。
答案 0 :(得分:0)
在RN 63中,删除对ErrorUtils
的所有引用都可以。 (jestSetup
文件中没有多余的行对其进行嘲笑。)