github.com/titpetric/pendulum@v0.1.180207-1512.0.20180514135826-1f399445df57/front/src/test/unit/specs/Hello.spec.js (about) 1 import Vue from 'vue' 2 import Hello from '@/components/Hello' 3 4 describe('Hello.vue', () => { 5 it('should render correct contents', () => { 6 const Constructor = Vue.extend(Hello) 7 const vm = new Constructor().$mount() 8 expect(vm.$el.querySelector('.hello h1').textContent) 9 .to.equal('Welcome to Your Vue.js App') 10 }) 11 })