fix: Render valid urls only in custom attributes (#3921)

This commit is contained in:
Muhsin Keloth 2022-02-07 13:04:27 +05:30 committed by GitHub
parent 047070ad87
commit 9f37a6e2ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 21 deletions

View file

@ -2,6 +2,7 @@ import {
frontendURL,
conversationUrl,
accountIdFromPathname,
isValidURL,
} from '../URLHelper';
describe('#URL Helpers', () => {
@ -48,4 +49,13 @@ describe('#URL Helpers', () => {
expect(accountIdFromPathname('')).toBe('');
});
});
describe('isValidURL', () => {
it('should return true if valid url is passed', () => {
expect(isValidURL('https://chatwoot.com')).toBe(true);
});
it('should return false if invalid url is passed', () => {
expect(isValidURL('alert.window')).toBe(false);
});
});
});