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