summaryrefslogtreecommitdiff
path: root/spec/frontend/content_editor/markdown_processing_spec.js
blob: e435af30e9ff4e17d47b7ae56a195b6eb71eaebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { createEditor } from '~/content_editor';
import { loadMarkdownApiExamples, loadMarkdownApiResult } from './markdown_processing_examples';

describe('markdown processing', () => {
  // Ensure we generate same markdown that was provided to Markdown API.
  it.each(loadMarkdownApiExamples())('correctly handles %s', async (testName, markdown) => {
    const { html } = loadMarkdownApiResult(testName);
    const editor = await createEditor({ content: markdown, renderMarkdown: () => html });

    expect(editor.getSerializedContent()).toBe(markdown);
  });
});