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

footnote_definition_spec.js « extensions « content_editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3dbc56ae0efb0d6214ae501c95e07e7b74ceedb (plain)
1
2
3
4
5
6
7
import FootnoteDefinition from '~/content_editor/extensions/footnote_definition';

describe('content_editor/extensions/footnote_definition', () => {
  it('sets the isolation option to true', () => {
    expect(FootnoteDefinition.config.isolating).toBe(true);
  });
});