import { plainTextToHtml } from './htmlUtils'; describe('htmlUtils', () => { test('should convert a plain text string to its HTML equivalent', () => { const testCases = [ [ '', '', ], [ 'line 1\nline 2', '
line 1
line 2