Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty_state_spec.js « components « terraform « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1637ac2039ca9813406d757d5a9960980220b109 (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
import { GlEmptyState, GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import EmptyState from '~/terraform/components/empty_state.vue';

describe('EmptyStateComponent', () => {
  let wrapper;

  const propsData = {
    image: '/image/path',
  };
  const docsUrl = '/help/user/infrastructure/terraform_state';
  const findEmptyState = () => wrapper.findComponent(GlEmptyState);
  const findLink = () => wrapper.findComponent(GlLink);

  beforeEach(() => {
    wrapper = shallowMount(EmptyState, { propsData, stubs: { GlEmptyState, GlLink } });
  });

  it('should render content', () => {
    expect(findEmptyState().exists()).toBe(true);
    expect(wrapper.text()).toContain('Get started with Terraform');
  });

  it('should have a link to the GitLab managed Terraform States docs', () => {
    expect(findLink().attributes('href')).toBe(docsUrl);
  });
});