mirror of https://github.com/sveltejs/svelte
19 lines
380 B
19 lines
380 B
export default {
|
|
skip_if_ssr: true,
|
|
|
|
async test({ assert, component, target, window, raf }) {
|
|
const frame = target.querySelector('iframe');
|
|
await Promise.resolve();
|
|
|
|
component.visible = true;
|
|
const div = frame.contentDocument.querySelector('div');
|
|
|
|
raf.tick(25);
|
|
|
|
component.visible = false;
|
|
|
|
raf.tick(26);
|
|
assert.ok(~div.style.animation.indexOf('25ms'));
|
|
},
|
|
};
|