summaryrefslogtreecommitdiff
path: root/spec/frontend/content_editor/extensions/footnote_definition_spec.js
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);
  });
});