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

17 lines
330 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)
})
})