NuxtLogo.spec.js 256 B

12345678910
  1. /* eslint-disable */
  2. import { mount } from '@vue/test-utils';
  3. import NuxtLogo from '@/components/NuxtLogo.vue';
  4. describe('NuxtLogo', () => {
  5. test('is a Vue instance', () => {
  6. const wrapper = mount(NuxtLogo);
  7. expect(wrapper.vm).toBeTruthy();
  8. });
  9. });