| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /**
- * @license Copyright (c) 2003-2020, 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 SpecialCharacters from '../src/specialcharacters';
- import SpecialCharactersArrows from '../src/specialcharactersarrows';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- describe( 'SpecialCharactersArrows', () => {
- testUtils.createSinonSandbox();
- let editor, editorElement, addItemsSpy, addItemsFirstCallArgs;
- beforeEach( () => {
- editorElement = document.createElement( 'div' );
- addItemsSpy = sinon.spy( SpecialCharacters.prototype, 'addItems' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ SpecialCharacters, SpecialCharactersArrows ]
- } )
- .then( newEditor => {
- editor = newEditor;
- addItemsFirstCallArgs = addItemsSpy.args[ 0 ];
- } );
- } );
- afterEach( () => {
- addItemsSpy.restore();
- editorElement.remove();
- return editor.destroy();
- } );
- it( 'adds new items', () => {
- expect( addItemsSpy.callCount ).to.equal( 1 );
- } );
- it( 'properly names the category', () => {
- expect( addItemsFirstCallArgs[ 0 ] ).to.equal( 'Arrows' );
- } );
- it( 'adds proper characters', () => {
- expect( addItemsFirstCallArgs[ 1 ] ).to.deep.include( {
- title: 'rightwards double arrow',
- character: '⇒'
- } );
- expect( addItemsFirstCallArgs[ 1 ] ).to.deep.include( {
- title: 'rightwards arrow to bar',
- character: '⇥'
- } );
- } );
- } );
|