what-is-the-dose/src/components/App.test.js
Nils Norman Haukås 20e4afd223 initial commit
2018-05-12 19:05:53 +02:00

11 lines
240 B
JavaScript

import Vue from 'vue'
import App from './App.vue'
Vue.config.productionTip = false
it('does not crash', () => {
const Ctor = Vue.extend(App)
const vm = new Ctor().$mount()
expect(vm.$el.textContent).toMatch(/Welcome to Vue\.js/)
})