import {html, htmlEscape, htmlRaw} from './html.ts'; test('html', async () => { expect(html`${'<>&\'"'}`).toBe(`<>&'"`); expect(html`${htmlRaw('')}`).toBe(``); expect(html`${htmlRaw``}`).toBe(``); expect(htmlEscape(``)).toBe(`<a></a>`); });