UNPKG

@muvehealth/fixins

Version:

Component library for Muvehealth

18 lines (16 loc) 391 B
/* eslint-disable function-paren-newline, comma-dangle */ import React from 'react' import renderWithTheme from '../../testHelper' import Radio from '../Radio' describe('Radio', () => { it('renders a Radio', () => { const tree = renderWithTheme( <Radio name="test-radio" label="One" type="radio" /> ) expect(tree).toMatchSnapshot() }) })