mirror of
https://github.com/romancm/gamebrary
synced 2025-02-17 19:48:24 +00:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
|
import Vue from 'vue';
|
||
|
import NavHeader from '@/components/NavHeader';
|
||
|
|
||
|
describe('NavHeader', () => {
|
||
|
it('should render correct contents', () => {
|
||
|
const Constructor = Vue.extend(NavHeader);
|
||
|
const vm = new Constructor().$mount();
|
||
|
|
||
|
expect(vm.$el).to.exist;
|
||
|
});
|
||
|
});
|
||
|
|