summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/gl_feature_flags_plugin_spec.js
blob: 7738a69a174fe7e9e1d1aa5b2d7a49ce90308aa7 (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
import { shallowMount } from '@vue/test-utils';
import Vue from 'vue';
import GlFeatureFlags from '~/vue_shared/gl_feature_flags_plugin';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';

describe('GitLab Feature Flags Plugin', () => {
  beforeEach(() => {
    window.gon = {
      features: {
        aFeature: true,
        bFeature: false,
      },
      licensed_features: {
        cFeature: true,
        dFeature: false,
      },
    };

    Vue.use(GlFeatureFlags);
  });

  it('should provide glFeatures to components', () => {
    const component = {
      template: `<span></span>`,
      inject: ['glFeatures'],
    };
    const wrapper = shallowMount(component);
    expect(wrapper.vm.glFeatures).toEqual({
      aFeature: true,
      bFeature: false,
      cFeature: true,
      dFeature: false,
    });
  });

  it('should integrate with the glFeatureMixin', () => {
    const component = {
      template: `<span></span>`,
      mixins: [glFeatureFlagsMixin()],
    };
    const wrapper = shallowMount(component);
    expect(wrapper.vm.glFeatures).toEqual({
      aFeature: true,
      bFeature: false,
      cFeature: true,
      dFeature: false,
    });
  });
});