TheFooter.spec.js 342 B

1234567891011121314
  1. import Vue from 'vue'
  2. import CoreuiVue from '@coreui/vue'
  3. import TheFooter from '@/containers/TheFooter'
  4. import { shallowMount } from '@vue/test-utils';
  5. Vue.use(CoreuiVue)
  6. describe('TheFooter.vue', () => {
  7. test('renders correctly', () => {
  8. const wrapper = shallowMount(TheFooter)
  9. expect(wrapper.element).toMatchSnapshot()
  10. })
  11. })