summaryrefslogtreecommitdiff
path: root/spec/frontend/static_site_editor/components/invalid_content_message_spec.js
blob: 7e699e9451c549f677535b710b4dd417db0c7da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { shallowMount } from '@vue/test-utils';

import InvalidContentMessage from '~/static_site_editor/components/invalid_content_message.vue';

describe('~/static_site_editor/components/invalid_content_message.vue', () => {
  let wrapper;
  const findDocumentationButton = () => wrapper.find({ ref: 'documentationButton' });
  const documentationUrl =
    'https://gitlab.com/gitlab-org/project-templates/static-site-editor-middleman';

  beforeEach(() => {
    wrapper = shallowMount(InvalidContentMessage);
  });

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

  it('renders the configuration button link', () => {
    expect(findDocumentationButton().exists()).toBe(true);
    expect(findDocumentationButton().attributes('href')).toBe(documentationUrl);
  });
});