|
|
@ -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>'); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |