Welcome to mirror list, hosted at ThFree Co, Russian Federation.

render_gfm_spec.js « markdown « behaviors « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bbb92282e58177a85c0966c474441baa29985b7 (plain)
1
2
3
4
5
6
7
8
9
import { renderGFM } from '~/behaviors/markdown/render_gfm';

describe('renderGFM', () => {
  it('handles a missing element', () => {
    expect(() => {
      renderGFM();
    }).not.toThrow();
  });
});