Skip to content

bijoutrouvaille/jest-preset-typescript-react-native

 
 

Repository files navigation

jest-preset-typescript-react-native

NPM Version License

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"
}

About

Simplify the configuration of jest with a react-native and typescript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%