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

parameter_form_group_spec.js « strategies « components « feature_flags « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23ad0d3a08d66f8b733c5e4778d1702b31b05242 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { GlFormGroup, GlFormInput } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import ParameterFormGroup from '~/feature_flags/components/strategies/parameter_form_group.vue';

describe('~/feature_flags/strategies/parameter_form_group.vue', () => {
  let wrapper;
  let formGroup;
  let slot;

  beforeEach(() => {
    wrapper = mount(ParameterFormGroup, {
      propsData: { inputId: 'test-id', label: 'test' },
      attrs: { description: 'test description' },
      scopedSlots: {
        default(props) {
          return this.$createElement(GlFormInput, {
            attrs: { id: props.inputId, 'data-testid': 'slot' },
          });
        },
      },
    });

    formGroup = wrapper.findComponent(GlFormGroup);
    slot = wrapper.find('[data-testid="slot"]');
  });

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

    wrapper = null;
  });

  it('should display the default slot', () => {
    expect(slot.exists()).toBe(true);
  });

  it('should bind the input id to the slot', () => {
    expect(slot.attributes('id')).toBe('test-id');
  });

  it('should bind the label-for to the input id', () => {
    expect(formGroup.find('[for="test-id"]').exists()).toBe(true);
  });

  it('should bind extra attributes to the form group', () => {
    expect(formGroup.attributes('description')).toBe('test description');
  });
});