1

我无法使用酶、jest 和 react-native-testing-library 测试反应原生应用程序。

只需进行渲染测试

it('renders correctly', () => {
  renderer.create(<App />).toJSON;
});

我得到这个错误

FAIL 测试/App-test.js ● 测试套件未能运行

TypeError: Cannot read property 'Direction' of undefined

  at Object.<anonymous> (node_modules/react-native-gesture-handler/Directions.js:3:33)
  at Object.<anonymous> (node_modules/react-native-gesture-handler/GestureHandler.js:2:42)

测试套件:1 个失败,总共 1 个测试:总共 0 个快照:总共 0 个时间:1.586 秒运行所有测试套件。npm 错误!测试失败。有关更多详细信息,请参见上文。

4

1 回答 1

2

尝试将此添加到您的package.json

"jest": {
    "preset": "react-native",
    "setupFiles": [
      "./node_modules/react-native-gesture-handler/jestSetup.js"
    ]
  }
于 2020-03-18T01:52:51.787 回答