UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

17 lines (11 loc) 326 B
import Vue from 'vue'; import { Wrapper } from '@vue/test-utils'; import { mountComponent } from '@/tests'; import BackToTopBtn from '../'; let wrapper: Wrapper<Vue>; describe('BackToTopBtn', () => { it('renders correctly', () => { wrapper = mountComponent(BackToTopBtn); expect(wrapper).toMatchSnapshot(); }); });