UNPKG

@muvehealth/fixins

Version:

Component library for Muvehealth

16 lines (14 loc) 380 B
/* eslint-disable function-paren-newline, comma-dangle */ import React from 'react' import renderWithTheme from '../../testHelper' import FormHeading from '../FormHeading' describe('FormHeading', () => { it('renders a FormHeading', () => { const tree = renderWithTheme( <FormHeading> Form Heading </FormHeading> ) expect(tree).toMatchSnapshot() }) })