element-plus/packages/hooks/__tests__/use-focus.vitest.ts
三咲智子 aaf90d99d0
test: switch to vitest (#5991)
* test: use vitest

* test: add script and ci

* chore: improve tsconfig

* refactor: use-form-item

* fix: remove unused

* chore: improve scripts

* test: improve mock

* refactor: change coverage
2022-02-21 14:28:22 +08:00

18 lines
420 B
TypeScript

import { ref } from 'vue'
import { describe, it, expect } 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)
})
})