jest-preset-typescript-react-native
v1.2.0
Published
jest preset for using typescript with react-native
Downloads
259
Maintainers
Readme
jest-preset-typescript-react-native
To simplify the configuration of jest with a react-native project that is using typescript.
The configuration is simply just the react-native
preset with a couple other transformers to make jest work with ts
and tsx
files. After adding the preset you will be able to write your tests completely in typescript!
Install
The library can be installed with yarn with the following:
yarn add jest-preset-typescript-react-native --dev
or with npm with the following:
npm install jest-preset-typescript-react-native --save-dev
Usage
Add the preset to your Jest configuration :
{
"preset": "jest-preset-typescript-react-native"
}
Update react-native default settings
By default when creating a react-native project jest will be already configured for you in the package.json
as follows:
"jest": {
"preset": "react-native"
}
To update the default react-native settings just change the preset to use this library instead. Like so:
"jest": {
"preset": "jest-preset-typescript-react-native"
}