2024-03-05 11:36:21 +03:00

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)
})
})