@testing-library/react-native 14.0.0-rc.3 → 14.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.
- package/README.md +1 -1
- package/docs/guides/quick-start.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ React Native Testing Library consists of following APIs:
|
|
|
94
94
|
|
|
95
95
|
## Migration Guides
|
|
96
96
|
|
|
97
|
-
- **[Migration to 14.0](https://oss.callstack.com/react-native-testing-library/docs/migration
|
|
97
|
+
- **[Migration to 14.0](https://oss.callstack.com/react-native-testing-library/docs/start/migration-v14)** - Drops React 18, async APIs by default
|
|
98
98
|
|
|
99
99
|
## Troubleshooting
|
|
100
100
|
|
|
@@ -8,10 +8,10 @@ Open a Terminal in your project's folder and run:
|
|
|
8
8
|
|
|
9
9
|
<PackageManagerTabs
|
|
10
10
|
command={{
|
|
11
|
-
npm: 'npm install -D @testing-library/react-native
|
|
12
|
-
yarn: 'yarn add -D @testing-library/react-native
|
|
13
|
-
pnpm: 'pnpm add -D @testing-library/react-native
|
|
14
|
-
bun: 'bun add -D @testing-library/react-native
|
|
11
|
+
npm: 'npm install -D @testing-library/react-native',
|
|
12
|
+
yarn: 'yarn add -D @testing-library/react-native',
|
|
13
|
+
pnpm: 'pnpm add -D @testing-library/react-native',
|
|
14
|
+
bun: 'bun add -D @testing-library/react-native',
|
|
15
15
|
}}
|
|
16
16
|
/>
|
|
17
17
|
|
package/package.json
CHANGED