a951fb20cb
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
13 lines
557 B
JavaScript
13 lines
557 B
JavaScript
import MessageFormatter from '../MessageFormatter';
|
|
|
|
describe('#MessageFormatter', () => {
|
|
describe('content with links', () => {
|
|
it('should format correctly', () => {
|
|
const message =
|
|
'Chatwoot is an opensource tool\nSee more at https://www.chatwoot.com';
|
|
expect(new MessageFormatter(message).formattedMessage).toEqual(
|
|
'Chatwoot is an opensource tool<br>See more at <a rel="noreferrer noopener nofollow" href="https://www.chatwoot.com" class="link" target="_blank">https://www.chatwoot.com</a>'
|
|
);
|
|
});
|
|
});
|
|
});
|