2018-11-16 18:16:35 +01:00
|
|
|
import NervMag from '@/components/NervMag.vue';
|
2018-12-06 19:59:16 +01:00
|
|
|
import { shallowMount } from '@vue/test-utils';
|
2018-11-16 18:16:35 +01:00
|
|
|
|
|
|
|
describe('NervMag.vue', () => {
|
|
|
|
it('renders main screen', () => {
|
|
|
|
const wrapper = shallowMount(NervMag, {
|
|
|
|
propsData: { },
|
|
|
|
});
|
|
|
|
// expect(wrapper.text()).toMatch(msg);
|
|
|
|
});
|
|
|
|
});
|