File size: 241 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import isCheckBoxInput from '../../utils/isCheckBoxInput';
describe('isCheckBoxInput', () => {
it('should return true when type is checkbox', () => {
expect(isCheckBoxInput({ name: 'test', type: 'checkbox' })).toBeTruthy();
});
});
|