Initial commit

This commit is contained in:
2024-03-05 11:36:21 +03:00
commit bf2f060b94
212 changed files with 100448 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import {test, describe, expect} from 'vitest'
import { mount} from '@vue/test-utils'
import AppPageHeader from '@atoms/VButton.vue';
describe("tests AppPageHeader component", () => {
test('mount test of AppPageHeader', async () => {
const wrapper = mount(AppPageHeader, {
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 NewSiteButton from '@atoms/VButton.vue';
describe("tests NewSiteButton component", () => {
test('mount test of NewSiteButton', async () => {
const wrapper = mount(NewSiteButton, {
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 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 VDoubleSwitch from '@atoms/VDoubleSwitch.vue';
describe("tests VDoubleSwitch component", () => {
test('exist test of VDoubleSwitch', async () => {
const wrapper = mount(VDoubleSwitch, {
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)
})
})

View File

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