jest-expo 44.0.0-beta.0 → 44.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,18 +2,15 @@
2
2
 
3
3
  A [Jest](https://facebook.github.io/jest/) preset to painlessly test your Expo / React Native apps.
4
4
 
5
- If you have problems with the code in this repository, please file issues & bug reports
6
- at https://github.com/expo/expo. Thanks!
7
-
8
5
  ### Installation
9
6
 
10
- - `yarn add jest-expo --dev` or `npm i jest-expo --save-dev`
7
+ - To install the compatible version of `jest-expo` for your project, run: `expo install jest-expo`
11
8
  - Add the following config to `package.json`:
12
9
 
13
- ```js
10
+ ```json
14
11
  "scripts": {
15
- "test": "node_modules/.bin/jest",
16
- "test:debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand"
12
+ ...
13
+ "test": "jest"
17
14
  },
18
15
  "jest": {
19
16
  "preset": "jest-expo"
@@ -116,4 +113,4 @@ Alternative to `jest-expo/node`. This runs in a Node environment for testing **S
116
113
 
117
114
  ### Learning Jest
118
115
 
119
- [Read the excellent documentation](https://facebook.github.io/jest/)
116
+ [Read the Jest documentation](https://facebook.github.io/jest/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jest-expo",
3
- "version": "44.0.0-beta.0",
3
+ "version": "44.0.0",
4
4
  "description": "A Jest preset to painlessly test your Expo / React Native apps.",
5
5
  "license": "MIT",
6
6
  "main": "src",
@@ -46,5 +46,5 @@
46
46
  "url": "https://github.com/expo/expo/issues"
47
47
  },
48
48
  "homepage": "https://github.com/expo/expo/tree/master/packages/jest-expo",
49
- "gitHead": "4ac89934e2acc4ef1fad59f338d9019fe2d92240"
49
+ "gitHead": "779a011c9a6a436d3e69df0f8f7d1a4703fb297a"
50
50
  }