import {createElementFromAttrs, createElementFromHTML} from './dom.js'; test('createElementFromHTML', () => { expect(createElementFromHTML('foobar').outerHTML).toEqual('foobar'); }); test('createElementFromAttrs', () => { const el = createElementFromAttrs('button', { id: 'the-id', class: 'cls-1 cls-2', 'data-foo': 'the-data', disabled: true, required: null, }); expect(el.outerHTML).toEqual(''); });