Browse Source

Updated test for font-family in decoupled document build.

Kuba Niegowski 5 years ago
parent
commit
5a32ca13d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-build-decoupled-document/tests/ckeditor.js

+ 1 - 1
packages/ckeditor5-build-decoupled-document/tests/ckeditor.js

@@ -200,7 +200,7 @@ describe( 'DecoupledEditor build', () => {
 
 				editor.setData( data );
 				expect( editor.getData() ).to.equal( data );
-				expect( editor.model.document.selection.getAttribute( 'fontFamily' ) ).to.equal( 'Georgia' );
+				expect( editor.model.document.selection.getAttribute( 'fontFamily' ) ).to.equal( 'Georgia, serif' );
 			} );
 
 			it( 'font background color works', () => {