nervmag/tests/unit/NervMag.spec.ts

12 lines
293 B
TypeScript

import { shallowMount } from '@vue/test-utils';
import NervMag from '@/components/NervMag.vue';
describe('NervMag.vue', () => {
it('renders main screen', () => {
const wrapper = shallowMount(NervMag, {
propsData: { },
});
// expect(wrapper.text()).toMatch(msg);
});
});