Browse Source

fix error in testcase

pull/25/head
Thorsten Lünborg 9 years ago
committed by GitHub
parent
commit
992e8c4d62
  1. 2
      template/test/unit/Hello.spec.js

2
template/test/unit/Hello.spec.js

@ -7,7 +7,7 @@ describe('Hello.vue', () => {
el: document.createElement('div'),
render: (h) => h(Hello)
})
expect(vm.$el.querySelector('.hello h1').textContent).toBe('Hello Vue!')
expect(vm.$el.querySelector('h1').textContent).toBe('Welcome to Your Vue.js App')
})
})

Loading…
Cancel
Save