import { UContainer } from './UContainer' import { describe, it, expect } from 'vitest' import { mount } from '@vue/test-utils' describe('UContainer', () => { it('should render correctly', () => { const wrapper = mount(UContainer) expect(wrapper.html()).toMatchSnapshot() }) it('should render fluid correctly', () => { const wrapper = mount(UContainer, { props: { fluid: true, }, }) expect(wrapper.html()).toMatchSnapshot() }) })