Initial commit

This commit is contained in:
2024-04-24 11:13:56 +03:00
commit 22d37bb0a4
301 changed files with 86455 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,16 @@
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)
})
})