2024-04-24 11:13:56 +03:00

17 lines
329 B
JavaScript

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