nielse63/312-Development

View on GitHub
scripts/templates/Component.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { shallowMount } from '@vue/test-utils';
import COMPONENT_NAME from '@/components/COMPONENT_NAME';

describe('COMPONENT_NAME.vue', () => {
  it('renders correctly', () => {
    const wrapper = shallowMount(COMPONENT_NAME);
    expect(wrapper).not.toBeNull();
  });
});