Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_custom_renderer_spec.js « services « rich_content_editor « static_site_editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 202e13e8bff5ca8ff40d943a02270632e8cdbe70 (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
import buildCustomHTMLRenderer from '~/static_site_editor/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({
          htmlBlock: expect.any(Function),
          htmlInline: expect.any(Function),
          heading: expect.any(Function),
          item: expect.any(Function),
          paragraph: expect.any(Function),
          text: expect.any(Function),
          softbreak: 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),
        }),
      );
    });
  });
});