gitlab-org--gitlab-foss/spec/frontend/content_editor/markdown_snapshot_spec.js

24 lines
637 B
JavaScript

import path from 'path';
import { describeMarkdownSnapshots } from 'jest/content_editor/markdown_snapshot_spec_helper';
jest.mock('~/emoji');
const glfmSpecificationDir = path.join(__dirname, '..', '..', '..', 'glfm_specification');
const glfmExampleSnapshotsDir = path.join(
__dirname,
'..',
'..',
'fixtures',
'glfm',
'example_snapshots',
);
// See https://docs.gitlab.com/ee/development/gitlab_flavored_markdown/specification_guide/#markdown-snapshot-testing
// for documentation on this spec.
describeMarkdownSnapshots(
'CE markdown snapshots in ContentEditor',
glfmSpecificationDir,
glfmExampleSnapshotsDir,
);