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-each-else-blo.../_config.js

23 lines
365 B

export default {
props: {
things: ['a', 'b', 'c']
},
test({ assert, component, target, raf }) {
component.things = [];
const div = target.querySelector('div');
assert.equal(div.foo, 0);
raf.tick(200);
assert.equal(div.foo, 0.5);
raf.tick(300);
assert.equal(div.foo, 0.75);
raf.tick(400);
assert.equal(div.foo, 1);
raf.tick(500);
}
};