@testing-library/react-native 11.0.0-rc.0 → 11.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 +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,8 +14,6 @@
14
14
  [![Chat][chat-badge]][chat]
15
15
  [![Sponsored by Callstack][callstack-badge]][callstack]
16
16
 
17
- > We renamed the `react-native-testing-library` npm package to `@testing-library/react-native`, officially joining the "Testing Library" family 🎉. Read the [migration guide](https://callstack.github.io/react-native-testing-library/docs/migration-v7).
18
-
19
17
  ## The problem
20
18
 
21
19
  You want to write maintainable tests for your React Native components. As a part of this goal, you want your tests to avoid including implementation details of your components and rather focus on making your tests give you the confidence for which they are intended. As part of this, you want your testbase to be maintainable in the long run so refactors of your components (changes to implementation but not functionality) don't break your tests and slow you and your team down.
@@ -138,6 +136,8 @@ The [public API](https://callstack.github.io/react-native-testing-library/docs/a
138
136
 
139
137
  ## Migration Guides
140
138
 
139
+ - [Migration to 11.0](https://callstack.github.io/react-native-testing-library/docs/migration-v11)
140
+ - [Migration to 9.0](https://callstack.github.io/react-native-testing-library/docs/migration-v9)
141
141
  - [Migration to 7.0](https://callstack.github.io/react-native-testing-library/docs/migration-v7)
142
142
  - [Migration to 2.0](https://callstack.github.io/react-native-testing-library/docs/migration-v2)
143
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testing-library/react-native",
3
- "version": "11.0.0-rc.0",
3
+ "version": "11.0.0",
4
4
  "description": "Simple and complete React Native testing utilities that encourage good testing practices.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -58,7 +58,7 @@
58
58
  "typescript": "^4.0.2"
59
59
  },
60
60
  "dependencies": {
61
- "pretty-format": "^27.0.0"
61
+ "pretty-format": "^28.1.3"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "react": ">=16.0.0",