mirror of https://github.com/sveltejs/svelte
15 lines
451 B
15 lines
451 B
import * as assert from 'assert';
|
|
import { tick } from 'svelte';
|
|
import './main.svelte';
|
|
|
|
export default async function (target) {
|
|
target.innerHTML = '<custom-element></custom-element>';
|
|
await tick();
|
|
assert.equal(target.innerHTML, '<custom-element></custom-element>');
|
|
|
|
const el = target.querySelector('custom-element');
|
|
const button = el.shadowRoot.querySelector('button');
|
|
|
|
assert.ok(button instanceof customElements.get('custom-button'));
|
|
}
|