Explorar el Código

Fixed linting issue.

Piotrek Koszuliński hace 9 años
padre
commit
781ec9da5e
Se han modificado 1 ficheros con 7 adiciones y 2 borrados
  1. 7 2
      packages/ckeditor5-typing/tests/inputcommand-integration.js

+ 7 - 2
packages/ckeditor5-typing/tests/inputcommand-integration.js

@@ -194,8 +194,13 @@ describe( 'InputCommand integration', () => {
 
 			editor.execute( 'undo' );
 
-			expectOutput( '<paragraph>Foo <$text bold="true">B</$text><$text italic="true"><$text bold="true">a</$text></$text><$text bold="true" italic="true">[]</$text> Bar</paragraph>',
-				'<p>Foo <strong>B</strong><em><strong>a{}</strong></em> Bar</p>' );
+			expectOutput(
+				'<paragraph>' +
+					'Foo <$text bold="true">B</$text><$text italic="true"><$text bold="true">a</$text></$text>' +
+					'<$text bold="true" italic="true">[]</$text> Bar' +
+				'</paragraph>',
+				'<p>Foo <strong>B</strong><em><strong>a{}</strong></em> Bar</p>'
+			);
 
 			editor.execute( 'undo' );