summaryrefslogtreecommitdiff
path: root/spec/frontend/feature_flags/components/strategies/users_with_id_spec.js
blob: 460df6ef2ecaa5a0871b6cf7b2c86b26e61dabba (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
import { mount } from '@vue/test-utils';
import { GlFormTextarea } from '@gitlab/ui';
import UsersWithId from '~/feature_flags/components/strategies/users_with_id.vue';
import { usersWithIdStrategy } from '../../mock_data';

const DEFAULT_PROPS = {
  strategy: usersWithIdStrategy,
};

describe('~/feature_flags/components/users_with_id.vue', () => {
  let wrapper;
  let textarea;

  const factory = (props = {}) => mount(UsersWithId, { propsData: { ...DEFAULT_PROPS, ...props } });

  beforeEach(() => {
    wrapper = factory();
    textarea = wrapper.find(GlFormTextarea);
  });

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

    wrapper = null;
  });

  it('should display the current value of the parameters', () => {
    expect(textarea.element.value).toBe(usersWithIdStrategy.parameters.userIds);
  });

  it('should emit a change event when the IDs change', () => {
    textarea.setValue('4,5,6');

    expect(wrapper.emitted('change')).toEqual([[{ parameters: { userIds: '4,5,6' } }]]);
  });
});