mirror of https://github.com/sveltejs/svelte
parent
64fa48e699
commit
3623c4abc9
@ -0,0 +1,37 @@
|
||||
let fulfil;
|
||||
|
||||
const promise = new Promise(f => {
|
||||
fulfil = f;
|
||||
});
|
||||
|
||||
export default {
|
||||
skipIntroByDefault: true,
|
||||
nestedTransitions: true,
|
||||
|
||||
data: {
|
||||
x: false,
|
||||
promise
|
||||
},
|
||||
|
||||
test(assert, component, target, window, raf) {
|
||||
component.set({ x: true });
|
||||
fulfil();
|
||||
|
||||
return promise.then(() => {
|
||||
const div = target.querySelector('div');
|
||||
assert.equal(div.foo, 0);
|
||||
|
||||
raf.tick(100);
|
||||
assert.equal(div.foo, 1);
|
||||
|
||||
component.set({ x: false });
|
||||
assert.htmlEqual(target.innerHTML, '<div></div>');
|
||||
|
||||
raf.tick(150);
|
||||
assert.equal(div.foo, 0.5);
|
||||
|
||||
raf.tick(200);
|
||||
assert.htmlEqual(target.innerHTML, '');
|
||||
});
|
||||
}
|
||||
};
|
@ -0,0 +1,20 @@
|
||||
{#if x}
|
||||
{#await promise then value}
|
||||
<div transition:foo></div>
|
||||
{/await}
|
||||
{/if}
|
||||
|
||||
<script>
|
||||
export default {
|
||||
transitions: {
|
||||
foo(node, params) {
|
||||
return {
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.foo = t;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue