Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
5 lines
202 B
JavaScript
5 lines
202 B
JavaScript
import {createElementFromHTML} from './dom.js';
|
|
|
|
test('createElementFromHTML', () => {
|
|
expect(createElementFromHTML('<a>foo<span>bar</span></a>').outerHTML).toEqual('<a>foo<span>bar</span></a>');
|
|
});
|