mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
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);
|
|
});
|
|
});
|