import { mount } from '@vue/test-utils' import Contact from '../Contact/Contact.vue' describe('notification.vue', () => { test('sample', () => { const wrapper = mount(Contact) expect(wrapper.text()).toEqual('Contact page Loaded') }) })