-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: document jest mocking on a dedicated page
- Loading branch information
1 parent
b89c760
commit 8e22af6
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Testing | ||
|
||
The React Native Google Mobile Ads library depends on a lot of platform-specific native code which you likely want to mock in your tests. | ||
|
||
## Testing with Jest | ||
|
||
This library ships with a Jest setup file that mocks the native code for you. | ||
To use it, add the following to your Jest configuration: | ||
|
||
```json | ||
// jest.config.js|ts|mjs|cjs|json | ||
{ | ||
"setupFiles": [ | ||
"./node_modules/react-native-google-mobile-ads/jest.setup.ts" | ||
] | ||
} | ||
``` |