7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
import { shouldBeUrl } from '../Validators';
|
|
|
|
describe('#shouldBeUrl', () => {
|
|
it('should return correct url', () => {
|
|
expect(shouldBeUrl('http')).toEqual(true);
|
|
});
|
|
});
|