0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/runtime/samples/autofocus/_config.js

9 lines
188 B
JavaScript
Raw Normal View History

2016-11-20 18:56:13 +01:00
export default {
html: '',
test({ assert, component, target, window }) {
component.visible = true;
assert.equal(target.querySelector('input'), window.document.activeElement);
2016-11-20 18:56:13 +01:00
}
};