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.
|
2021-09-30 23:02:18 +05:30
|
|
|
it.each(loadMarkdownApiExamples())(
|
|
|
|
'correctly handles %s (context: %s)',
|
|
|
|
async (name, context, markdown) => {
|
|
|
|
const testName = context ? `${context}_${name}` : name;
|
|
|
|
const { html, body } = loadMarkdownApiResult(testName);
|
|
|
|
const contentEditor = createContentEditor({ renderMarkdown: () => html || body });
|
|
|
|
await contentEditor.setSerializedContent(markdown);
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(contentEditor.getSerializedContent()).toBe(markdown);
|
|
|
|
},
|
|
|
|
);
|
2021-04-29 21:17:54 +05:30
|
|
|
});
|