Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import isRadioInput from '../../utils/isRadioInput';
describe('isRadioInput', () => {
it('should return true when type is radio', () => {
expect(isRadioInput({ name: 'test', type: 'radio' })).toBeTruthy();
});
});