8
0
Просмотр исходного кода

Fix code sample indentation of the checkAssertions().

Maciej Gołaszewski 6 лет назад
Родитель
Сommit
96aafef830
1 измененных файлов с 10 добавлено и 10 удалено
  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.
 	 */