@cnamts/vue-dot
Version:
Implementation of our Design System for the French Health Insurance
20 lines (13 loc) • 350 B
text/typescript
import Vue from 'vue';
import { Wrapper } from '@vue/test-utils';
import { mountComponent } from '@/tests';
import FooterBar from '../';
let wrapper: Wrapper<Vue>;
describe('FooterBar', () => {
it('renders correctly', () => {
wrapper = mountComponent(FooterBar, {
stubs: ['RouterLink']
});
expect(wrapper).toMatchSnapshot();
});
});