nervmag/tests/unit/NervMag.spec.ts

12 lines
293 B
TypeScript
Raw Normal View History

2018-11-16 18:16:35 +01:00
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);
});
});