RadioButton.test.tsx 297 B

12345678
  1. import React from 'react'
  2. import { mount } from 'enzyme'
  3. import RadioButton from '@/shared/components/RadioButton'
  4. describe('RadioButton component', () => {
  5. it('Should render radio button correctly', () => {
  6. expect(mount(<RadioButton label="test Radio Button" />)).toMatchSnapshot()
  7. })
  8. })