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

16 lines
353 B

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