We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1570c6 commit 21a4c15Copy full SHA for 21a4c15
jest.setup.ts
@@ -40,7 +40,14 @@ jest.doMock('react-native', () => {
40
ReactNative,
41
);
42
});
43
-jest.doMock('./src/ads/GoogleMobileAdsBannerViewNativeComponent', () => {
+jest.doMock('./src/specs/components/GoogleMobileAdsBannerViewNativeComponent', () => {
44
+ return {
45
+ __esModule: true,
46
+ Commands: {},
47
+ default: ReactNative.View,
48
+ };
49
+});
50
+jest.doMock('./src/specs/components/GoogleMobileAdsNativeViewNativeComponent', () => {
51
return {
52
__esModule: true,
53
Commands: {},
0 commit comments