mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
|
import { ref } from 'vue'
|
||
|
import useFocus from '../use-focus'
|
||
|
|
||
|
describe('useFocus', () => {
|
||
|
it('should focus el', async () => {
|
||
|
const inputEl = document.createElement('input')
|
||
|
document.body.appendChild(inputEl)
|
||
|
|
||
|
const reference = ref(inputEl)
|
||
|
const { focus } = useFocus(reference)
|
||
|
|
||
|
focus()
|
||
|
|
||
|
expect(document.activeElement).toBe(inputEl)
|
||
|
})
|
||
|
})
|
||
|
|