2021-06-08 01:23:25 +05:30
|
|
|
import { createContentEditor } from '~/content_editor';
|
2021-04-29 21:17:54 +05:30
|
|
|
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);
|
2021-06-08 01:23:25 +05:30
|
|
|
const contentEditor = createContentEditor({ renderMarkdown: () => html });
|
|
|
|
await contentEditor.setSerializedContent(markdown);
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(contentEditor.getSerializedContent()).toBe(markdown);
|
2021-04-29 21:17:54 +05:30
|
|
|
});
|
|
|
|
});
|