summaryrefslogtreecommitdiff
path: root/spec/javascripts/issue_show/components/fields/description_spec.js
blob: f5b35b1e8b00f59d1e7884a2a5b7208d5949c643 (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 Vue from 'vue';
import Store from '~/issue_show/stores';
import descriptionField from '~/issue_show/components/fields/description.vue';

describe('Description field component', () => {
  let vm;
  let store;

  beforeEach((done) => {
    const Component = Vue.extend(descriptionField);
    const el = document.createElement('div');
    store = new Store({
      titleHtml: '',
      descriptionHtml: '',
      issuableRef: '',
    });
    store.formState.description = 'test';

    document.body.appendChild(el);

    vm = new Component({
      el,
      propsData: {
        markdownPreviewUrl: '/',
        markdownDocs: '/',
        formState: store.formState,
      },
    }).$mount();

    Vue.nextTick(done);
  });

  it('renders markdown field with description', () => {
    expect(
      vm.$el.querySelector('.md-area textarea').value,
    ).toBe('test');
  });

  it('renders markdown field with a markdown description', (done) => {
    store.formState.description = '**test**';

    Vue.nextTick(() => {
      expect(
        vm.$el.querySelector('.md-area textarea').value,
      ).toBe('**test**');

      done();
    });
  });

  it('focuses field when mounted', () => {
    expect(
      document.activeElement,
    ).toBe(vm.$refs.textarea);
  });
});