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/oncreate/test.js

15 lines
307 B

import * as assert from 'assert';
import { tick } from 'svelte';
import './main.svelte';
export default async function (target) {
target.innerHTML = '<my-app prop/>';
await tick();
const el = target.querySelector('my-app');
await tick();
assert.ok(el.wasCreated);
assert.ok(el.propsInitialized);
}