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/runtime/samples/transition-js-slot-fallback/_config.js

24 lines
398 B

export default {
html: `
<div>Foo</div>
`,
async test({ assert, component, target, raf }) {
await component.hide();
const div = target.querySelector('div');
raf.tick(50);
assert.equal(div.foo, 0.5);
await component.show();
assert.htmlEqual(target.innerHTML, '<div>Bar</div>');
raf.tick(75);
assert.equal(div.foo, 0.75);
raf.tick(100);
assert.equal(div.foo, 1);
}
};