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

markdown_processing_spec.js « content_editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
  });
});