UNPKG

@muvehealth/fixins

Version:

Component library for Muvehealth

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