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

registry_settings_app_spec.js « components « settings « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0fe617206486c948bdebcf9574575535af67c87 (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
51
52
53
54
55
56
import Vuex from 'vuex';
import { shallowMount, createLocalVue } from '@vue/test-utils';
import component from '~/registry/settings/components/registry_settings_app.vue';
import { createStore } from '~/registry/settings/store/';

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

describe('Registry Settings App', () => {
  let wrapper;
  let store;
  let fetchSpy;

  const findSettingsComponent = () => wrapper.find({ ref: 'settings-form' });
  const findLoadingComponent = () => wrapper.find({ ref: 'loading-icon' });

  const mountComponent = (options = {}) => {
    fetchSpy = jest.fn();
    wrapper = shallowMount(component, {
      sync: false,
      store,
      methods: {
        fetchSettings: fetchSpy,
      },
      ...options,
    });
  };

  beforeEach(() => {
    store = createStore();
    mountComponent();
  });

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

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

  it('call the store function to load the data on mount', () => {
    expect(fetchSpy).toHaveBeenCalled();
  });

  it('renders a loader if isLoading is true', () => {
    store.dispatch('toggleLoading');
    return wrapper.vm.$nextTick().then(() => {
      expect(findLoadingComponent().exists()).toBe(true);
      expect(findSettingsComponent().exists()).toBe(false);
    });
  });
  it('renders the setting form', () => {
    expect(findSettingsComponent().exists()).toBe(true);
  });
});