feat(app): tests

This commit is contained in:
2024-04-01 09:37:52 +03:00
parent eefc7ba4ac
commit 2b37e59afc
46 changed files with 1101 additions and 693 deletions

View File

@@ -1,10 +1,10 @@
import {test, describe, expect} from 'vitest'
import { mount} from '@vue/test-utils'
import Button from '@atoms/VButton.vue';
import VButton from '@atoms/VButton.vue';
describe('Accordion', () => {
test('Accordion mounted', () => {
const wrapper = mount(Button)
describe('VButton', () => {
test('VButton mounted', () => {
const wrapper = mount(VButton)
expect(wrapper.exists()).toBe(true)
})
})