summaryrefslogtreecommitdiff
path: root/spec/frontend/batch_comments/components/publish_button_spec.js
blob: 97f3a1c89392ee86678e59c490847701093d80f1 (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
47
48
49
50
51
52
import Vue from 'vue';
import PublishButton from '~/batch_comments/components/publish_button.vue';
import { mountComponentWithStore } from 'helpers/vue_mount_component_helper';
import { createStore } from '~/batch_comments/stores';

describe('Batch comments publish button component', () => {
  let vm;
  let Component;

  beforeAll(() => {
    Component = Vue.extend(PublishButton);
  });

  beforeEach(() => {
    const store = createStore();

    vm = mountComponentWithStore(Component, { store, props: { shouldPublish: true } });

    jest.spyOn(vm.$store, 'dispatch').mockImplementation();
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('dispatches publishReview on click', () => {
    vm.$el.click();

    expect(vm.$store.dispatch).toHaveBeenCalledWith('batchComments/publishReview', undefined);
  });

  it('dispatches toggleReviewDropdown when shouldPublish is false on click', () => {
    vm.shouldPublish = false;

    vm.$el.click();

    expect(vm.$store.dispatch).toHaveBeenCalledWith(
      'batchComments/toggleReviewDropdown',
      undefined,
    );
  });

  it('sets loading when isPublishing is true', done => {
    vm.$store.state.batchComments.isPublishing = true;

    vm.$nextTick(() => {
      expect(vm.$el.getAttribute('disabled')).toBe('disabled');

      done();
    });
  });
});