summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/rich_content_editor/services/build_custom_renderer_spec.js
blob: cafe53e6bb2cec49045d6880601d8308fae46e66 (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
import buildCustomHTMLRenderer from '~/vue_shared/components/rich_content_editor/services/build_custom_renderer';

describe('Build Custom Renderer Service', () => {
  describe('buildCustomHTMLRenderer', () => {
    it('should return an object with the default renderer functions when lacking arguments', () => {
      expect(buildCustomHTMLRenderer()).toEqual(
        expect.objectContaining({
          list: expect.any(Function),
          text: expect.any(Function),
        }),
      );
    });

    it('should return an object with both custom and default renderer functions when passed customRenderers', () => {
      const mockHtmlCustomRenderer = jest.fn();
      const customRenderers = {
        html: [mockHtmlCustomRenderer],
      };

      expect(buildCustomHTMLRenderer(customRenderers)).toEqual(
        expect.objectContaining({
          html: expect.any(Function),
          list: expect.any(Function),
          text: expect.any(Function),
        }),
      );
    });
  });
});