Guest User

Untitled

a guest
Jul 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. it('should set previous page 3 to current page when click the Previous Button', () => {
  2. const paginator = shallowMount(Paginator)
  3. paginator.setData({
  4. currentPage: 4
  5. })
  6. let button = paginator.find('button')
  7. button.trigger('click')
  8. expect(paginator.vm.currentPage).toBe(3)
  9. })
Add Comment
Please, Sign In to add comment