summaryrefslogtreecommitdiff
path: root/spec/frontend/notes/components/discussion_resolve_with_issue_button_spec.js
blob: e62fb5db2c01c7367450ffe601c7cad3ad43c24d (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
import { GlDeprecatedButton } from '@gitlab/ui';
import { shallowMount, createLocalVue } from '@vue/test-utils';
import { TEST_HOST } from 'spec/test_constants';
import ResolveWithIssueButton from '~/notes/components/discussion_resolve_with_issue_button.vue';

const localVue = createLocalVue();

describe('ResolveWithIssueButton', () => {
  let wrapper;
  const url = `${TEST_HOST}/hello-world/`;

  beforeEach(() => {
    wrapper = shallowMount(ResolveWithIssueButton, {
      localVue,
      propsData: {
        url,
      },
    });
  });

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

  it('it should have a link with the provided link property as href', () => {
    const button = wrapper.find(GlDeprecatedButton);

    expect(button.attributes().href).toBe(url);
  });
});