Created
December 1, 2019 20:52
-
-
Save jvanderen1/ca7fa80ae04eace4fc87b644b19f782c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaultProps = { | |
numCols: 2, | |
numRows: 2, | |
setNumRows: jest.fn(), | |
setNumCols: jest.fn(), | |
}; | |
// | |
const getComponent = (props) => renderer.create( | |
<TestPage {...{ ...defaultProps, ...props }} />, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment