import { Keyboard, Keys } from '@ephox/agar'; import { describe, it } from '@ephox/bedrock-client'; import { TinyAssertions, TinyDom, TinyHooks } from '@ephox/wrap-mcagar'; import { assert } from 'chai'; import Editor from 'tinymce/core/api/Editor'; import VK from 'tinymce/core/api/util/VK'; import Plugin from 'tinymce/plugins/nonbreaking/Plugin'; describe('browser.tinymce.plugins.nonbreaking.NonbreakingForceTabTest', () => { const hook = TinyHooks.bddSetupLight({ plugins: 'nonbreaking', toolbar: 'nonbreaking', nonbreaking_force_tab: 5, theme: 'silver', base_url: '/project/tinymce/js/tinymce' }, [ Plugin ], true); it('TBA: Undo level on insert tab', () => { const editor = hook.editor(); Keyboard.activeKeystroke(TinyDom.document(editor), Keys.tab()); TinyAssertions.assertContent(editor, '

     

'); editor.undoManager.undo(); TinyAssertions.assertContent(editor, ''); }); it('TBA: Prevent default and other handlers on insert tab', () => { const editor = hook.editor(); const args = editor.dispatch('keydown', { keyCode: VK.TAB } as KeyboardEvent); assert.isTrue(args.isDefaultPrevented()); assert.isTrue(args.isImmediatePropagationStopped()); }); });