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/props-after-create/test.js

24 lines
620 B

import * as assert from 'assert';
import CustomElement from './main.svelte';
export default async function (target) {
const el = new CustomElement();
assert.equal(el.outerHTML, '<custom-element></custom-element>');
// const el = target.querySelector('custom-element');
assert.equal(el.shadowRoot, undefined);
el.items = ['a', 'b', 'c'];
const [p1, p2] = el.shadowRoot.querySelectorAll('p');
assert.equal(p1.textContent, '3 items');
assert.equal(p2.textContent, 'a, b, c');
el.items = ['d', 'e', 'f', 'g', 'h'];
assert.equal(p1.textContent, '5 items');
assert.equal(p2.textContent, 'd, e, f, g, h');
}