Welcome to mirror list, hosted at ThFree Co, Russian Federation.

discussion_jump_to_next_button_spec.js « components « notes « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ff9dbc5c1996cd82cc52ab448c47b122e498b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { shallowMount } from '@vue/test-utils';
import JumpToNextDiscussionButton from '~/notes/components/discussion_jump_to_next_button.vue';

describe('JumpToNextDiscussionButton', () => {
  let wrapper;
  const fromDiscussionId = 'abc123';

  beforeEach(() => {
    wrapper = shallowMount(JumpToNextDiscussionButton, {
      propsData: { fromDiscussionId },
    });
  });

  afterEach(() => {
    wrapper.destroy();
  });

  it('matches the snapshot', () => {
    expect(wrapper.vm.$el).toMatchSnapshot();
  });

  it('calls jumpToNextRelativeDiscussion when clicked', () => {
    const jumpToNextRelativeDiscussion = jest.fn();
    wrapper.setMethods({ jumpToNextRelativeDiscussion });
    wrapper.find({ ref: 'button' }).trigger('click');
    expect(jumpToNextRelativeDiscussion).toHaveBeenCalledWith(fromDiscussionId);
  });
});