Skip to content

Instantly share code, notes, and snippets.

@b-tiwari
Last active April 12, 2018 16:04
Show Gist options
  • Save b-tiwari/3b976691ce0adcec3cd27bf96d0bb43c to your computer and use it in GitHub Desktop.
Save b-tiwari/3b976691ce0adcec3cd27bf96d0bb43c to your computer and use it in GitHub Desktop.
jest.config.js with ts-jest
module.exports = {
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"preset": "jest-expo",
"testRegex": "(/__tests__/.*|/src/.*\\.(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"ios.ts",
"ios.tsx",
"android.ts",
"android.tsx"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment