File size: 191 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import isRegex from '../../utils/isRegex';
describe('isRegex', () => {
it('should return true when it is a regex', () => {
expect(isRegex(new RegExp('[a-z]'))).toBeTruthy();
});
});
|