koel/resources/assets/js/components/ui/form/TextArea.spec.ts
2024-07-06 17:44:59 +02:00

19 lines
484 B
TypeScript

import { screen } from '@testing-library/vue'
import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import TextArea from './TextArea.vue'
new class extends UnitTestCase {
protected test () {
it('emits value', async () => {
const { emitted } = this.render(TextArea)
await this.type(screen.getByRole('textbox'), 'Hi')
expect(emitted()['update:modelValue']).toStrictEqual([
['H'],
['Hi']
])
})
}
}