summaryrefslogtreecommitdiff
path: root/spec/javascripts/notes/components/note_actions/reply_button_spec.js
blob: 11e1664a3f4a34cbc19f567260736d378ed6ece5 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import Vuex from 'vuex';
import { createLocalVue, mount } from '@vue/test-utils';
import ReplyButton from '~/notes/components/note_actions/reply_button.vue';

describe('ReplyButton', () => {
  const noteId = 'dummy-note-id';

  let wrapper;
  let convertToDiscussion;

  beforeEach(() => {
    const localVue = createLocalVue();
    convertToDiscussion = jasmine.createSpy('convertToDiscussion');

    localVue.use(Vuex);
    const store = new Vuex.Store({
      actions: {
        convertToDiscussion,
      },
    });

    wrapper = mount(ReplyButton, {
      propsData: {
        noteId,
      },
      store,
      sync: false,
      localVue,
    });
  });

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

  it('dispatches convertToDiscussion with note ID on click', () => {
    const button = wrapper.find({ ref: 'button' });

    button.trigger('click');

    expect(convertToDiscussion).toHaveBeenCalledTimes(1);
    const [, payload] = convertToDiscussion.calls.argsFor(0);

    expect(payload).toBe(noteId);
  });
});