File size: 223 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import isRadioInput from '../../utils/isRadioInput';
describe('isRadioInput', () => {
it('should return true when type is radio', () => {
expect(isRadioInput({ name: 'test', type: 'radio' })).toBeTruthy();
});
});
|