import React from 'react' import renderer from 'react-test-renderer' import Header from '.' describe('Typography', () => { it('Rendering Font Components without crashing', () => { const tree = renderer.create(
).toJSON() expect(tree).toMatchSnapshot() }) })