blob: 78a3521f500a21ee0193eeff58fe5e316a203a4d [file] [log] [blame]
import { mount, createLocalVue } from '@vue/test-utils';
import PageContainer from '@/components/Global/PageContainer';
const localVue = createLocalVue();
describe('PageContainer.vue', () => {
const wrapper = mount(PageContainer, {
localVue,
mocks: {
$t: (key) => key,
},
});
it('should exist', () => {
expect(wrapper.exists()).toBe(true);
});
it('should render main element', () => {
expect(wrapper.find('main').exists()).toBe(true);
});
it('should render correctly', () => {
expect(wrapper.element).toMatchSnapshot();
});
});