summaryrefslogtreecommitdiff
path: root/spec/javascripts/merge_request_notes_spec.js
blob: e54acfa8e4403c80453ca9f08621475c40a73648 (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
57
58
59
60
61
/* global Notes */

import 'vendor/autosize';
import '~/gl_form';
import '~/lib/utils/text_utility';
import '~/render_gfm';
import '~/render_math';
import '~/notes';

describe('Merge request notes', () => {
  window.gon = window.gon || {};
  window.gl = window.gl || {};
  gl.utils = gl.utils || {};

  const fixture = 'merge_requests/diff_comment.html.raw';
  preloadFixtures(fixture);

  beforeEach(() => {
    loadFixtures(fixture);
    gl.utils.disableButtonIfEmptyField = _.noop;
    window.project_uploads_path = 'http://test.host/uploads';
    $('body').data('page', 'projects:merge_requests:show');
    window.gon.current_user_id = $('.note:last').data('author-id');

    return new Notes('', []);
  });

  describe('up arrow', () => {
    it('edits last comment when triggered in main form', () => {
      const upArrowEvent = $.Event('keydown');
      upArrowEvent.which = 38;

      spyOnEvent('.note:last .js-note-edit', 'click');

      $('.js-note-text').trigger(upArrowEvent);

      expect('click').toHaveBeenTriggeredOn('.note:last .js-note-edit');
    });

    it('edits last comment in discussion when triggered in discussion form', (done) => {
      const upArrowEvent = $.Event('keydown');
      upArrowEvent.which = 38;

      spyOnEvent('.note-discussion .js-note-edit', 'click');

      $('.js-discussion-reply-button').click();

      setTimeout(() => {
        expect(
          $('.note-discussion .js-note-text'),
        ).toExist();

        $('.note-discussion .js-note-text').trigger(upArrowEvent);

        expect('click').toHaveBeenTriggeredOn('.note-discussion .js-note-edit');

        done();
      });
    });
  });
});