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