summaryrefslogtreecommitdiff
path: root/spec/frontend/boards/components/issuable_title_spec.js
blob: 4b7f491b9980c63a54e471fcbbd67c42c9728021 (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
import { shallowMount } from '@vue/test-utils';
import IssuableTitle from '~/boards/components/issuable_title.vue';

describe('IssuableTitle', () => {
  let wrapper;
  const defaultProps = {
    title: 'One',
    refPath: 'path',
  };
  const createComponent = () => {
    wrapper = shallowMount(IssuableTitle, {
      propsData: { ...defaultProps },
    });
  };
  const findIssueContent = () => wrapper.find('[data-testid="issue-title"]');

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

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

  it('renders a title of an issue in the sidebar', () => {
    expect(findIssueContent().text()).toContain('One');
  });

  it('renders a referencePath of an issue in the sidebar', () => {
    expect(findIssueContent().text()).toContain('path');
  });
});