Skip to content

Instantly share code, notes, and snippets.

@niinpatel
Created February 25, 2019 14:57
Show Gist options
  • Save niinpatel/7dcb98ae6122f3253af935e9d8b074dc to your computer and use it in GitHub Desktop.
Save niinpatel/7dcb98ae6122f3253af935e9d8b074dc to your computer and use it in GitHub Desktop.
import React from 'react';
import { mount } from 'enzyme';
const TestHook = ({ callback }) => {
callback();
return null;
};
export const testHook = (callback) => {
mount(<TestHook callback={callback} />);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment