15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
import {test, describe, expect} from 'vitest'
|
|
import { mount} from '@vue/test-utils'
|
|
import VTextarea from '@atoms/VTextarea.vue';
|
|
|
|
describe("tests VTextarea component", () => {
|
|
test('exist test of VTextarea', async () => {
|
|
|
|
const wrapper = mount(VTextarea, {
|
|
shallow: true,
|
|
})
|
|
|
|
expect(wrapper.exists()).toBe(true)
|
|
})
|
|
})
|