import { Keys } from '@ephox/agar'; import { describe, it } from '@ephox/bedrock-client'; import { TinyAssertions, TinyContentActions, TinyHooks, TinySelections, TinyUiActions } from '@ephox/wrap-mcagar'; import Editor from 'tinymce/core/api/Editor'; import Plugin from 'tinymce/plugins/emoticons/Plugin'; describe('browser.tinymce.plugins.emoticons.EmoticonAutocompletionTest', () => { const hook = TinyHooks.bddSetupLight({ plugins: 'emoticons', toolbar: 'emoticons', base_url: '/project/tinymce/js/tinymce', emoticons_database_url: '/project/tinymce/src/plugins/emoticons/test/js/test-emojis.js', emoticons_database_id: 'tinymce.plugins.emoticons.test-emojis.js' }, [ Plugin ], true); // NOTE: This is almost identical to charmap it('TBA: Autocomplete, trigger an autocomplete and check it appears', async () => { const editor = hook.editor(); editor.setContent('

:ha

'); TinySelections.setCursor(editor, [ 0, 0 ], 3); TinyContentActions.keypress(editor, 'a'.charCodeAt(0)); await TinyUiActions.pWaitForPopup(editor, '.tox-autocompleter .tox-collection__item'); TinyContentActions.keydown(editor, Keys.right()); TinyContentActions.keydown(editor, Keys.right()); TinyContentActions.keydown(editor, Keys.enter()); TinyAssertions.assertContent(editor, '

😂

'); }); });