summaryrefslogtreecommitdiff
path: root/spec/frontend/content_editor/markdown_processing_spec.js
blob: 3930f47289aa8eb1b7e0fb481e3996e65944a140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import path from 'path';
import { describeMarkdownProcessing } from 'jest/content_editor/markdown_processing_spec_helper';

jest.mock('~/emoji');

const markdownYamlPath = path.join(
  __dirname,
  '..',
  '..',
  'fixtures',
  'markdown',
  'markdown_golden_master_examples.yml',
);

// See spec/fixtures/markdown/markdown_golden_master_examples.yml for documentation on how this spec works.
describeMarkdownProcessing('CE markdown processing in ContentEditor', markdownYamlPath);