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

10 lines
359 B
JavaScript

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