Skip to content

Instantly share code, notes, and snippets.

@jasongaare
Created June 28, 2017 18:23
Show Gist options
  • Save jasongaare/0ded7b5d7f7cf1627fea08c253c89cbe to your computer and use it in GitHub Desktop.
Save jasongaare/0ded7b5d7f7cf1627fea08c253c89cbe to your computer and use it in GitHub Desktop.
jest.mock('Animated', () => {
return {
createTimer: jest.fn(),
timing: jest.fn(() => {
return {
start: jest.fn(),
};
}),
Value: jest.fn(() => {
return {
interpolate: jest.fn(),
};
}),
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment