Hello.spec.js 356 B

12345678910111213
  1. import Vue from 'vue'
  2. import Hello from 'src/components/Hello'
  3. describe('Hello.vue', () => {
  4. it('should render correct contents', () => {
  5. const vm = new Vue({
  6. el: document.createElement('div'),
  7. render: (h) => h(Hello)
  8. })
  9. expect(vm.$el.querySelector('.hello h1').textContent)
  10. .to.equal('Welcome to Your Vue.js App')
  11. })
  12. })