summaryrefslogtreecommitdiff
path: root/tests/unit/Global/PageContainer.spec.js
blob: 2d3a124da0b4727d9805e8befddc56ea46bcb40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { mount } from '@vue/test-utils';
import PageContainer from '@/components/Global/PageContainer';

describe('PageContainer.vue', () => {
  const wrapper = mount(PageContainer, {
    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();
  });
});