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 e0391d6 commit 435a2afCopy full SHA for 435a2af
Example/images/back_chevron.png
575 Bytes
Example/images/menu_burger.png
706 Bytes
Example/test/setup.js
@@ -0,0 +1,15 @@
1
+require("babel-register")({
2
+ // This will override `node_modules` ignoring - you can alternatively pass
3
+ // an array of strings to be explicitly matched or a regex / glob
4
+ ignore: false
5
+});
6
+
7
+jest.mock('Linking', () => {
8
+ return {
9
+ addEventListener: jest.fn(),
10
+ removeEventListener: jest.fn(),
11
+ openURL: jest.fn(),
12
+ canOpenURL: jest.fn(),
13
+ getInitialURL: ()=>new Promise((resolve, reject) => resolve()),
14
+ }
15
0 commit comments