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