forked from potsda.mn/mobilizon
92d2045735
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
import Vue from 'vue';
|
|
import Hello from '@/components/Home';
|
|
|
|
describe('Hello.vue', () => {
|
|
it('should render correct contents', () => {
|
|
const Constructor = Vue.extend(Hello);
|
|
const vm = new Constructor().$mount();
|
|
expect(vm.$el.querySelector('.hello h1').textContent)
|
|
.to.equal('Welcome to Your Vue.js App');
|
|
});
|
|
});
|