Parcourir la source

Fix code sample indentation of the checkAssertions().

Maciej Gołaszewski il y a 6 ans
Parent
commit
96aafef830
1 fichiers modifiés avec 10 ajouts et 10 suppressions
  1. 10 10
      packages/ckeditor5-core/tests/_utils/utils.js

+ 10 - 10
packages/ckeditor5-core/tests/_utils/utils.js

@@ -49,19 +49,19 @@ const utils = {
 	 *
 	 * Usage:
 	 *
-	 *      it( 'test', () => {
-	 *          // Test bootstrapping...
+	 *		it( 'test', () => {
+	 *			// Test bootstrapping...
 	 *
-	 *          const assertEdge = () => {
-	 *              // expect();
-	 *          };
+	 *			const assertEdge = () => {
+	 *				// expect();
+	 *			};
 	 *
-	 *          const assertAll = () => {
-	 *              // expect();
-	 *          };
+	 *			const assertAll = () => {
+	 *				// expect();
+	 *			};
 	 *
-	 *          testUtils.checkAssertions( assertEdge, assertAll );
-	 *      } );
+	 *			testUtils.checkAssertions( assertEdge, assertAll );
+	 *		} );
 	 *
 	 * @param {...Function} assertions Functions that will be executed.
 	 */