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-css-in-out-in-wi.../_config.js

22 lines
701 B

export default {
test({ assert, component, target, raf }) {
component.visible = true;
const div = target.querySelector('div');
// animation duration of `in` should be 10ms.
assert.equal(div.style.animation, '__svelte_1670736059_0 10ms linear 0ms 1 both');
// animation duration of `out` should be 5ms.
component.visible = false;
assert.equal(div.style.animation, '__svelte_1670736059_0 10ms linear 0ms 1 both, __svelte_1998461463_0 5ms linear 0ms 1 both');
// change param
raf.tick(1);
component.param = true;
component.visible = true;
// animation duration of `in` should be 20ms.
assert.equal(div.style.animation, '__svelte_722598827_0 20ms linear 0ms 1 both');
}
};