vue-bulma-components
Version:
Quickly Translate Bulma css in to vue components
12 lines (10 loc) • 334 B
JavaScript
import Vue from 'vue'
import Hello from 'src/example/Hello'
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')
})
})