react-native-fast-jest
v1.0.2
Published
Use @swc/jest in React Native for faster testing!
Downloads
4
Readme
react-native-fast-jest
Run testing 3x faster than babel-jest!
Internally using @swc/jest
Installation
npm i --save-dev react-native-fast-jest
Configuration
- You need to configure
.swcrc
like below.
{
"jsc": {
"parser": {
"syntax": "typescript",
"jsx": true,
"tsx": true,
"dynamicImport": false,
"privateMethod": false,
"functionBind": false,
"exportDefaultFrom": false,
"exportNamespaceFrom": false,
"decorators": false,
"decoratorsBeforeExport": false,
"topLevelAwait": false,
"importMeta": false,
"preserveAllComments": false
},
"transform": null,
"target": "es5",
"loose": true,
"externalHelpers": false,
"keepClassNames": false
},
"isModule": true
}
- Configure jest config trasform
transform: {
'^.+\\.(t|j)sx?$': 'react-native-fast-jest',
},
I have error when jest.spyOn
TypeError: Cannot redefine property
or TypeError: Cannot read properties of undefined
You need to do mock as a esModule
jest.mock('./path_to_spy', () => {
return {
__esModule: true, // <- Important!
...jest.requireActual('./path_to_spy'),
};
});