Skip to content
Snippets Groups Projects

feat: Add footer component

Merged Magnus Grini requested to merge footer-component into development
3 files
+ 41
0
Compare changes
  • Side-by-side
  • Inline
Files
3
import { mount } from '@vue/test-utils'
import { describe, it, expect } from 'vitest'
import FooterComponent from '../FooterComponent.vue';
describe('FooterComponent', () => {
it('rendedrs without crashing', () => {
const wrapper = mount(FooterComponent, {
global: {
stubs: ['RouterLink']
}
})
expect(wrapper.exists()).toBe(true)
})
})
\ No newline at end of file
Loading