import React from 'react'; import { create } from 'react-test-renderer'; import { Radio } from '..'; test('Default', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); }); test('Disabled', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); }); test('Default Checked', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); }); test('Default Checked Disabled', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); }); test('With Description', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); }); test('With Id', () => { const tree = create( ); expect(tree.toJSON()).toMatchSnapshot(); });