UNPKG

@rocketsofawesome/mirage

Version:

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

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