Add comment, test to unescapeHTML (#7949)
This commit is contained in:
parent
cdfe51e325
commit
1e65cdf821
2 changed files with 11 additions and 0 deletions
10
app/javascript/mastodon/utils/__tests__/html-test.js
Normal file
10
app/javascript/mastodon/utils/__tests__/html-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import * as html from '../html';
|
||||
|
||||
describe('html', () => {
|
||||
describe('unsecapeHTML', () => {
|
||||
it('returns unescaped HTML', () => {
|
||||
const output = html.unescapeHTML('<p>lorem</p><p>ipsum</p><br><br>');
|
||||
expect(output).toEqual('lorem\n\nipsum\n<br>');
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue