Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee committed Apr 11, 2019
1 parent 804490e commit 8c0a42f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/commands/link/__tests__/link-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ describe('link', () => {
});

it('should register native module when android/ios projects are present', done => {
const prelink = jest.fn().mockImplementation(cb => cb());
const postlink = jest.fn().mockImplementation(cb => cb());
const prelink = jest.fn();
const postlink = jest.fn();
const registerNativeModule = jest.fn();

const config = {
Expand Down

0 comments on commit 8c0a42f

Please sign in to comment.