Ver código fonte

Group transformations tests.

Maciej Gołaszewski 6 anos atrás
pai
commit
989184456d

+ 9 - 4
packages/ckeditor5-typing/tests/texttransformation.js

@@ -44,10 +44,15 @@ describe( 'Text transformation feature', () => {
 	} );
 
 	describe( 'transformations', () => {
-		testTransformation( '(c)', '©' );
-		testTransformation( '(tm)', '™' );
-		testTransformation( '1/2', '½' );
-		testTransformation( '<=', '≤' );
+		describe( 'symbols', () => {
+			testTransformation( '(c)', '©' );
+			testTransformation( '(tm)', '™' );
+		} );
+
+		describe( 'mathematical', () => {
+			testTransformation( '1/2', '½' );
+			testTransformation( '<=', '≤' );
+		} );
 
 		describe( 'quotations', () => {
 			describe( 'english US', () => {