Skip to content

Commit

Permalink
add test images
Browse files Browse the repository at this point in the history
  • Loading branch information
aksonov committed Jul 10, 2017
1 parent e0391d6 commit 435a2af
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Binary file added Example/images/back_chevron.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Example/images/menu_burger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions Example/test/setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
require("babel-register")({
// This will override `node_modules` ignoring - you can alternatively pass
// an array of strings to be explicitly matched or a regex / glob
ignore: false
});

jest.mock('Linking', () => {
return {
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
openURL: jest.fn(),
canOpenURL: jest.fn(),
getInitialURL: ()=>new Promise((resolve, reject) => resolve()),
}
});

0 comments on commit 435a2af

Please sign in to comment.