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