mirror of https://github.com/sveltejs/svelte
25 lines
422 B
25 lines
422 B
export default {
|
|
props: {
|
|
visible: true
|
|
},
|
|
|
|
test({ assert, component, target, window, raf }) {
|
|
component.visible = false;
|
|
|
|
const outer = target.querySelector('.outer');
|
|
const inner = target.querySelector('.inner');
|
|
|
|
const animations = [
|
|
outer.style.animation,
|
|
inner.style.animation
|
|
];
|
|
|
|
raf.tick(150);
|
|
|
|
assert.deepEqual([
|
|
outer.style.animation,
|
|
inner.style.animation
|
|
], animations);
|
|
},
|
|
};
|