Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
fix: Remove jest preset ignite (#216)
Browse files Browse the repository at this point in the history
[skip-ci]
* Remove jest preset ignite

* Remove hanging comma
  • Loading branch information
ryanlntn authored and kevinvangelder committed Jul 2, 2019
1 parent d424784 commit 2279b59
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions boilerplate/package.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"eslint-plugin-standard": "^4.0.0",
"jest-preset-ignite": "0.6.1",
"npm-run-all": "4.1.5",
"patch-package": "5.1.1",
"postinstall-prepare": "1.0.1",
Expand All @@ -84,9 +83,22 @@
"typescript": "3.2.4"
},
"jest": {
"preset": "jest-preset-ignite",
"testPathIgnorePatterns": ["/node_modules/", "/e2e"],
"transformIgnorePatterns": ["node_modules/(?!(@react-native-community|react-native))"]
"preset": "react-native",
"moduleNameMapper": {
"^[./a-zA-Z0-9$_-]+\\.(bmp|gif|jpg|jpeg|png|psd|svg|webp|ttf|otf)$": "RelativeImageStub",
"^React$": "<rootDir>/node_modules/react"
},
"setupFiles": [
"<rootDir>/node_modules/react-native/jest/setup.js",
"<rootDir>/test/setup.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-native|react-navigation|@react-navigation|@storybook|@react-native-community)"
]
},
"prettier": {
"printWidth": 100,
Expand Down

0 comments on commit 2279b59

Please sign in to comment.