Здравствуйте, я на самом деле пытаюсь протестировать свои компоненты, используя Jest и снимки! пока я набираю этот код; он отображает ошибку об этом модуле response-native-жест-обработчик , который связан с навигацией. Это следующая ошибка:
TypeError: Cannot read property 'Direction' of undefined
at Object.<anonymous> (node_modules/react-native-gesture-handler/Directions.js:3:39)
App-test. js
import 'react-native';
import React from 'react';
import Registration from '../routes/Registration';
// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';
test('Registration snapShot', () => {
const snap = renderer.create(
<Registration/>
).toJSON();
expect(snap).toMatchSnapshot();
})