Skip to content

Instantly share code, notes, and snippets.

@jvanderen1
Created December 1, 2019 21:07
Show Gist options
  • Save jvanderen1/05ba4e604d0fcbe52fbb0fc1ca8b51f9 to your computer and use it in GitHub Desktop.
Save jvanderen1/05ba4e604d0fcbe52fbb0fc1ca8b51f9 to your computer and use it in GitHub Desktop.
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