Guest User

Untitled

a guest
Jul 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. test('someComputedProperty should evaluate buzzwords correctly', () => {
  2. const wrapper = mount(CoolCard, {
  3. propsData: {
  4. wow: 'wow'
  5. }
  6. });
  7. wrapper.setData({
  8. buzzword: 'Big Data'
  9. });
  10. expect(wrapper.vm.someComputedProperty).toEqual('Big Data is very big');
  11. });
Add Comment
Please, Sign In to add comment