Skip to content

Instantly share code, notes, and snippets.

@Lxxyx
Created January 22, 2017 07:57
Show Gist options
  • Save Lxxyx/b8d343e17b521182d61515cdbc15c5bb to your computer and use it in GitHub Desktop.
Save Lxxyx/b8d343e17b521182d61515cdbc15c5bb to your computer and use it in GitHub Desktop.
ts-jest package.json
{
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest-setup.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"__DEV__": true
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"verbose": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment