Chatwoot/app/javascript/shared/helpers/specs/ValidatorsHelper.spec.js

7 lines
178 B
JavaScript

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