import { UiFinder } from '@ephox/agar'; import { describe, it } from '@ephox/bedrock-client'; import { Fun } from '@ephox/katamari'; import { SugarBody } from '@ephox/sugar'; import { TinyHooks } from '@ephox/wrap-mcagar'; import Editor from 'tinymce/core/api/Editor'; describe('browser.tinymce.core.InlineEditorSaveTest', () => { const hook = TinyHooks.bddSetupLight({ inline: true, base_url: '/project/tinymce/js/tinymce' }, []); const assertBogusNotExist = () => { UiFinder.findIn(SugarBody.body(), '[data-mce-bogus]').fold(() => { throw new Error('Should be data-mce-bogus tags present'); }, Fun.noop); }; it('Saving inline editor should not remove data-mce-bogus tags', () => { const editor = hook.editor(); editor.setContent('

b

b

', { format: 'raw' }); editor.save(); assertBogusNotExist(); }); });