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-dynamic-if-bl.../_config.js

37 lines
740 B

export default {
props: {
name: 'world'
},
test({ assert, component, target, raf }) {
global.count = 0;
component.visible = true;
assert.equal(global.count, 1);
const div = target.querySelector('div');
assert.equal(div.foo, 0);
raf.tick(75);
component.name = 'everybody';
assert.equal(div.foo, 0.75);
assert.htmlEqual(div.innerHTML, 'hello everybody!');
component.visible = false;
component.name = 'again';
assert.htmlEqual(div.innerHTML, 'hello everybody!');
raf.tick(125);
assert.equal(div.foo, 0.25);
component.visible = true;
raf.tick(175);
assert.equal(div.foo, 0.75);
assert.htmlEqual(div.innerHTML, 'hello again!');
raf.tick(200);
assert.equal(div.foo, 1);
raf.tick(225);
}
};