summaryrefslogtreecommitdiff
path: root/spec/frontend/content_editor/extensions/hard_break_spec.js
blob: 9e2e28b6e72e5e8b99f54f90f063cc9af46f0738 (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
import HardBreak from '~/content_editor/extensions/hard_break';
import { createTestEditor, createDocBuilder } from '../test_utils';

describe('content_editor/extensions/hard_break', () => {
  let tiptapEditor;
  let eq;
  let doc;
  let p;
  let hardBreak;

  beforeEach(() => {
    tiptapEditor = createTestEditor({ extensions: [HardBreak] });

    ({
      builders: { doc, p, hardBreak },
      eq,
    } = createDocBuilder({
      tiptapEditor,
      names: { hardBreak: { nodeType: HardBreak.name } },
    }));
  });

  describe('Shift-Enter shortcut', () => {
    it('inserts a hard break when shortcut is executed', () => {
      const initialDoc = doc(p(''));
      const expectedDoc = doc(p(hardBreak()));

      tiptapEditor.commands.setContent(initialDoc.toJSON());
      tiptapEditor.commands.keyboardShortcut('Shift-Enter');

      expect(eq(tiptapEditor.state.doc, expectedDoc)).toBe(true);
    });
  });

  describe('Mod-Enter shortcut', () => {
    it('does not insert a hard break when shortcut is executed', () => {
      const initialDoc = doc(p(''));
      const expectedDoc = initialDoc;

      tiptapEditor.commands.setContent(initialDoc.toJSON());
      tiptapEditor.commands.keyboardShortcut('Mod-Enter');

      expect(eq(tiptapEditor.state.doc, expectedDoc)).toBe(true);
    });
  });
});