Created
December 1, 2019 21:07
-
-
Save jvanderen1/05ba4e604d0fcbe52fbb0fc1ca8b51f9 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
describe('Rendering', () => { | |
it('renders default correctly', () => { | |
component = getComponent(); | |
expect(component).toMatchSnapshot(); | |
}); | |
it('renders no data correctly', () => { | |
component = getComponent({ numCols: null, numRows: null }); | |
expect(component).toMatchSnapshot(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment