Following is the error I receive on running a Sample testcase:
JavaScript
x
10
10
1
Expected react-native/jest-preset to define transform[^.+.(bmp|gif|jpg|jpeg|mp4|png|psd|svg|webp)$]
2
react-native/jest-preset contained different transformIgnorePatterns than expected
3
FAIL ./App.test.js
4
● Test suite failed to run
5
6
Cannot find module 'react-native/Libraries/LogBox/LogBox' from 'setup.js'
7
8
at Resolver.resolveModule (node_modules/jest-expo/node_modules/jest-resolve/build/index.js:299:11)
9
at Object.<anonymous> (node_modules/jest-expo/src/preset/setup.js:155:6)
10
My Testcase:
JavaScript
1
13
13
1
import React from 'react';
2
import renderer from 'react-test-renderer';
3
4
import App from './App';
5
6
describe('<App />', () => {
7
it('has 1 child', () => {
8
const tree = renderer.create(<App />).toJSON();
9
expect(tree.children.length).toBe(1);
10
});
11
});
12
13
My jest configuration in package.json
:
JavaScript
1
8
1
"jest": {
2
"preset": "jest-expo",
3
"transformIgnorePatterns": [
4
"<rootDir>/node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)",
5
"node_modules/(?!(react-native|my-project|react-native-button)/)"
6
]
7
},
8
My dependencies in package.json
:
JavaScript
1
5
1
"jest": "^26.4.2",
2
"jest-expo": "^39.0.0",
3
"jest-react-native": "^18.0.0",
4
"react-test-renderer": "^16.13.1",
5
expo version
: 37.0.0
react
: `16.9.0
react-native
: "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz"
Advertisement
Answer
Found the solution on the Expo thread mentioning the exact same issue here.
It looks like you’re using jest-expo v39 with a project running SDK37. LogBox was released with React Native 0.63 which is what SDK39 is using. Can you try running with v37.0.0 and see if that resolves the issue?