UNPKG

@rocketsofawesome/mirage

Version:

[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)

18 lines (13 loc) 342 B
import React from 'react' import 'jest-styled-components' import { H4 } from 'SRC' const { shallowWithTheme } = global describe('(Styled Component) H4', () => { const createH4 = (props) => { return shallowWithTheme(<H4 {...props} />) } test('matching the snapshot', () => { expect(createH4()) .toMatchSnapshot() }) })