mirror of https://github.com/sveltejs/svelte
9 lines
188 B
9 lines
188 B
8 years ago
|
export default {
|
||
8 years ago
|
html: '',
|
||
|
|
||
8 years ago
|
test ( assert, component, target, window ) {
|
||
8 years ago
|
component.set({ visible: true });
|
||
|
assert.equal( component.refs.input, window.document.activeElement );
|
||
|
}
|
||
|
};
|