File size: 217 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import isFileInput from '../../utils/isFileInput';

describe('isFileInput', () => {
  it('should return true when type is file', () => {
    expect(isFileInput({ name: 'test', type: 'file' })).toBeTruthy();
  });
});