debian-mirror-gitlab/spec/frontend/content_editor/markdown_processing_spec.js

17 lines
482 B
JavaScript
Raw Normal View History

2022-01-26 12:08:38 +05:30
import path from 'path';
import { describeMarkdownProcessing } from 'jest/content_editor/markdown_processing_spec_helper';
2021-04-29 21:17:54 +05:30
2021-10-27 15:23:28 +05:30
jest.mock('~/emoji');
2022-01-26 12:08:38 +05:30
const markdownYamlPath = path.join(
__dirname,
'..',
'..',
'fixtures',
'markdown',
'markdown_golden_master_examples.yml',
);
2021-04-29 21:17:54 +05:30
2022-01-26 12:08:38 +05:30
// See spec/fixtures/markdown/markdown_golden_master_examples.yml for documentation on how this spec works.
describeMarkdownProcessing('CE markdown processing in ContentEditor', markdownYamlPath);