| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global document */
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import Indent from '../src/indent';
- import IndentEditing from '../src/indentediting';
- import IndentUI from '../src/indentui';
- describe( 'Indent', () => {
- let editor, element;
- testUtils.createSinonSandbox();
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- return ClassicTestEditor
- .create( element, { plugins: [ Indent ] } )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- afterEach( () => {
- element.remove();
- if ( editor ) {
- return editor.destroy();
- }
- } );
- it( 'should be named', () => {
- expect( Indent.pluginName ).to.equal( 'Indent' );
- } );
- it( 'should load the IndentUI plugin', () => {
- expect( editor.plugins.get( IndentUI ) ).to.be.instanceOf( IndentUI );
- } );
- it( 'should load the IndentEditing plugin', () => {
- expect( editor.plugins.get( IndentEditing ) ).to.be.instanceOf( IndentEditing );
- } );
- } );
|