import { splitHtml, SplittedHtml } from './HtmlToHtml'; describe('HtmlToHtml', () => { test('should split an HTML string into HTML and CSS', () => { const testCases: [string, SplittedHtml][] = [ [ '', { html: '', css: '', }, ], [ '\n
another line
', { html: '\nanother line
', css: 'b { font-weight: bold; }', }, ], [ '\n