You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/custom-elements/samples/html-slots/test.js

18 lines
441 B

import * as assert from 'assert';
import './main.svelte';
export default function (target) {
target.innerHTML = `
<custom-element>
<strong>slotted</strong>
</custom-element>`;
const el = target.querySelector('custom-element');
const div = el.shadowRoot.children[0];
const [slot0, slot1] = div.children;
assert.equal(slot0.assignedNodes()[1], target.querySelector('strong'));
assert.equal(slot1.assignedNodes().length, 0);
}