/**
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/* global document */
import Font from '../src/font';
import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
import env from '@ckeditor/ckeditor5-utils/src/env';
describe( 'Integration test Font', () => {
let element, editor, model;
beforeEach( () => {
element = document.createElement( 'div' );
document.body.appendChild( element );
return ClassicTestEditor
.create( element, {
plugins: [ Font, ArticlePluginSet ]
} )
.then( newEditor => {
editor = newEditor;
model = editor.model;
} );
} );
afterEach( () => {
element.remove();
return editor.destroy();
} );
describe( 'in-between font plugin features', () => {
it( 'should render one span element for all types of font features', () => {
setModelData( model,
'
' + 'foo' + '' + '
' ); } else { // Edge sorts attributes of an element. expect( editor.getData() ).to.equal( '' + 'foo' + '' + '
' ); } } ); } ); describe( 'between font plugin and other', () => { it( 'should render elements wrapped in proper order', () => { setModelData( model, '' + '' + '' + 'foo' + '' + '' + '
' ); } ); } ); } );