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

token_access_app_spec.js « token_access « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cff16fd125c0c098f47b73f9a858af67834b39ef (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
import { shallowMount } from '@vue/test-utils';
import OutboundTokenAccess from '~/token_access/components/outbound_token_access.vue';
import InboundTokenAccess from '~/token_access/components/inbound_token_access.vue';
import OptInJwt from '~/token_access/components/opt_in_jwt.vue';
import TokenAccessApp from '~/token_access/components/token_access_app.vue';

describe('TokenAccessApp component', () => {
  let wrapper;

  const findOutboundTokenAccess = () => wrapper.findComponent(OutboundTokenAccess);
  const findInboundTokenAccess = () => wrapper.findComponent(InboundTokenAccess);
  const findOptInJwt = () => wrapper.findComponent(OptInJwt);

  const createComponent = () => {
    wrapper = shallowMount(TokenAccessApp);
  };

  describe('default', () => {
    beforeEach(() => {
      createComponent();
    });

    it('renders the opt in jwt component', () => {
      expect(findOptInJwt().exists()).toBe(true);
    });

    it('renders the outbound token access component', () => {
      expect(findOutboundTokenAccess().exists()).toBe(true);
    });

    it('renders the inbound token access component', () => {
      createComponent(true);

      expect(findInboundTokenAccess().exists()).toBe(true);
    });
  });
});