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

info_spec.js « merge_requests « components « ide « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98a29e5128be2b6da29b6f403e9403e08d9fb038 (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
import Vue from 'vue';
import '~/behaviors/markdown/render_gfm';
import { createStore } from '~/ide/stores';
import Info from '~/ide/components/merge_requests/info.vue';
import { createComponentWithStore } from '../../../helpers/vue_mount_component_helper';

describe('IDE merge request details', () => {
  let Component;
  let vm;

  beforeAll(() => {
    Component = Vue.extend(Info);
  });

  beforeEach(() => {
    const store = createStore();
    store.state.currentProjectId = 'gitlab-ce';
    store.state.currentMergeRequestId = 1;
    store.state.projects['gitlab-ce'] = {
      mergeRequests: {
        1: {
          iid: 1,
          title: 'Testing',
          title_html: '<span class="title-html">Testing</span>',
          description: 'Description',
          description_html: '<p class="description-html">Description HTML</p>',
        },
      },
    };

    vm = createComponentWithStore(Component, store).$mount();
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('renders merge request IID', () => {
    expect(vm.$el.querySelector('.detail-page-header').textContent).toContain('!1');
  });

  it('renders title as HTML', () => {
    expect(vm.$el.querySelector('.title-html')).not.toBe(null);
    expect(vm.$el.querySelector('.title').textContent).toContain('Testing');
  });

  it('renders description as HTML', () => {
    expect(vm.$el.querySelector('.description-html')).not.toBe(null);
    expect(vm.$el.querySelector('.description').textContent).toContain('Description HTML');
  });
});