summaryrefslogtreecommitdiff
path: root/spec/frontend/content_editor/extensions/horizontal_rule_spec.js
blob: 322c04a42e1c33cb09d006f8632f00ab49c65cde (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
import HorizontalRule from '~/content_editor/extensions/horizontal_rule';
import { createTestEditor, createDocBuilder, triggerNodeInputRule } from '../test_utils';

describe('content_editor/extensions/horizontal_rule', () => {
  let tiptapEditor;
  let doc;
  let p;
  let horizontalRule;

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

    ({
      builders: { doc, p, horizontalRule },
    } = createDocBuilder({
      tiptapEditor,
      names: {
        horizontalRule: { nodeType: HorizontalRule.name },
      },
    }));
  });

  it.each`
    input      | insertedNodes
    ${'---'}   | ${() => [p(), horizontalRule()]}
    ${'--'}    | ${() => [p()]}
    ${'---x'}  | ${() => [p()]}
    ${' ---x'} | ${() => [p()]}
    ${' --- '} | ${() => [p()]}
    ${'x---x'} | ${() => [p()]}
    ${'x---'}  | ${() => [p()]}
  `('with input=$input, then should insert a $insertedNode', ({ input, insertedNodes }) => {
    const expectedDoc = doc(...insertedNodes());

    triggerNodeInputRule({ tiptapEditor, inputRuleText: input });

    expect(tiptapEditor.getJSON()).toEqual(expectedDoc.toJSON());
  });
});