Initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import {test, describe, expect} from 'vitest'
|
||||
import { mount} from '@vue/test-utils'
|
||||
import PacksContainer from '@frames/PacksContainer/PacksContainer.vue';
|
||||
|
||||
describe('PacksContainer', () => {
|
||||
test('PacksContainer mounted', () => {
|
||||
const wrapper = mount(PacksContainer)
|
||||
expect(wrapper.exists()).toBe(true)
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,10 @@
|
||||
import {test, describe, expect} from 'vitest'
|
||||
import { mount} from '@vue/test-utils'
|
||||
import PacksContainerBody from '@frames/PacksContainer/PacksContainerBody.vue';
|
||||
|
||||
describe('PacksContainerBody', () => {
|
||||
test('PacksContainerBody mounted', () => {
|
||||
const wrapper = mount(PacksContainerBody)
|
||||
expect(wrapper.exists()).toBe(true)
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,10 @@
|
||||
import {test, describe, expect} from 'vitest'
|
||||
import { mount} from '@vue/test-utils'
|
||||
import PacksContainerControl from '@frames/PacksContainer//PacksContainerControl.vue';
|
||||
|
||||
describe('PacksContainerControl', () => {
|
||||
test('PacksContainerControl mounted', () => {
|
||||
const wrapper = mount(PacksContainerControl)
|
||||
expect(wrapper.exists()).toBe(true)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user