13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
![]() |
import * as html from '../html';
|
||
|
|
||
|
describe('html', () => {
|
||
![]() |
describe('unescapeHTML', () => {
|
||
![]() |
it('returns unescaped HTML', () => {
|
||
![]() |
const output = html.unescapeHTML(
|
||
|
'<p>lorem</p><p>ipsum</p><br><br>',
|
||
|
);
|
||
![]() |
expect(output).toEqual('lorem\n\nipsum\n<br>');
|
||
|
});
|
||
|
});
|
||
|
});
|