lm-piplines/tests/components/4_frames/PacksContainer/PacksContainerBody.test.js
2024-04-24 11:13:56 +03:00

10 lines
343 B
JavaScript

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)
})
})