import { describe, it } from '@ephox/bedrock-client'; import { Arr } from '@ephox/katamari'; import { McEditor } from '@ephox/wrap-mcagar'; import Editor from 'tinymce/core/api/Editor'; import { ToolbarLocation } from 'tinymce/themes/silver/api/Options'; import * as StickyUtils from '../../../module/StickyHeaderUtils'; describe('browser.tinymce.themes.silver.editor.header.StickyHeaderInitialPlacementTest ', () => { Arr.each([ { location: ToolbarLocation.top, height: 2000, expectDocked: false }, { location: ToolbarLocation.bottom, height: 200, expectDocked: false }, { location: ToolbarLocation.bottom, height: 2000, expectDocked: true } ], (test) => { it(`Test toolbar initial placement with toolbar_location: ${test.location} and height: ${test.height}`, async () => { const editor = await McEditor.pFromSettings({ base_url: '/project/tinymce/js/tinymce', height: test.height, toolbar_location: test.location, toolbar_sticky: true }); editor.focus(); if (test.expectDocked) { const isToolbarTop = test.location === ToolbarLocation.top; await StickyUtils.pAssertHeaderDocked(isToolbarTop); } StickyUtils.assertEditorClasses(test.expectDocked); McEditor.remove(editor); }); }); });