summaryrefslogtreecommitdiff
path: root/spec/frontend/boards/components/sidebar/remove_issue_spec.js
blob: 1b7a78e6e5803feedc2287bcc495c3e8677f8256 (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 { GlButton } from '@gitlab/ui';

import RemoveIssue from '~/boards/components/sidebar/remove_issue.vue';

describe('boards sidebar remove issue', () => {
  let wrapper;

  const findButton = () => wrapper.find(GlButton);

  const createComponent = (propsData) => {
    wrapper = shallowMount(RemoveIssue, {
      propsData: {
        issue: {},
        list: {},
        ...propsData,
      },
    });
  };

  beforeEach(() => {
    createComponent();
  });

  it('renders remove button', () => {
    expect(findButton().exists()).toBe(true);
  });
});