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

packages_filter_spec.js « components « list « packages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b186b5f5e48e3aa060560c7a2420f6df7dbe47d3 (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 Vuex from 'vuex';
import { GlSearchBoxByClick } from '@gitlab/ui';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import PackagesFilter from '~/packages/list/components/packages_filter.vue';

const localVue = createLocalVue();
localVue.use(Vuex);

describe('packages_filter', () => {
  let wrapper;
  let store;

  const findGlSearchBox = () => wrapper.find(GlSearchBoxByClick);

  const mountComponent = () => {
    store = new Vuex.Store();
    store.dispatch = jest.fn();

    wrapper = shallowMount(PackagesFilter, {
      localVue,
      store,
    });
  };

  beforeEach(mountComponent);

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

  it('renders', () => {
    expect(wrapper.element).toMatchSnapshot();
  });

  describe('emits events', () => {
    it('sets the filter value in the store on input', () => {
      const searchString = 'foo';
      findGlSearchBox().vm.$emit('input', searchString);

      expect(store.dispatch).toHaveBeenCalledWith('setFilter', searchString);
    });

    it('emits the filter event when search box is submitted', () => {
      findGlSearchBox().vm.$emit('submit');

      expect(wrapper.emitted('filter')).toBeTruthy();
    });
  });
});