| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals document */
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import SuperscriptEditing from '../../src/superscript/superscriptediting';
- import SuperscriptUI from '../../src/superscript/superscriptui';
- import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- describe( 'SuperscriptUI', () => {
- let editor, superView;
- testUtils.createSinonSandbox();
- beforeEach( () => {
- const editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ Paragraph, SuperscriptEditing, SuperscriptUI ]
- } )
- .then( newEditor => {
- editor = newEditor;
- superView = editor.ui.componentFactory.create( 'superscript' );
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- it( 'should register superscript feature component', () => {
- expect( superView ).to.be.instanceOf( ButtonView );
- expect( superView.isOn ).to.be.false;
- expect( superView.label ).to.equal( 'Superscript' );
- expect( superView.icon ).to.match( /<svg / );
- expect( superView.isToggleable ).to.be.true;
- } );
- it( 'should execute superscript command on model execute event', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- superView.fire( 'execute' );
- sinon.assert.calledOnce( executeSpy );
- sinon.assert.calledWithExactly( executeSpy, 'superscript' );
- } );
- it( 'should bind model to superscript command', () => {
- const command = editor.commands.get( 'superscript' );
- expect( superView.isOn ).to.be.false;
- expect( superView.isEnabled ).to.be.true;
- command.value = true;
- expect( superView.isOn ).to.be.true;
- command.isEnabled = false;
- expect( superView.isEnabled ).to.be.false;
- } );
- } );
|