mirror of
https://github.com/romancm/gamebrary
synced 2025-02-19 20:48:25 +00:00
12 lines
296 B
JavaScript
Executable file
12 lines
296 B
JavaScript
Executable file
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;
|
|
});
|
|
});
|
|
|