17 lines
329 B
JavaScript
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)
|
|
})
|
|
})
|
|
|
|
|