mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
1d13ebb05d
* feat: drop jest * test: remove ssr * test: rename * chore: update tsconfig
18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import { ref } from 'vue'
|
|
import { describe, expect, it } from 'vitest'
|
|
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)
|
|
})
|
|
})
|