Răsfoiți Sursa

Code style: wraped tests in the main describe().

Piotrek Koszuliński 9 ani în urmă
părinte
comite
714b0d3e64
1 a modificat fișierele cu 76 adăugiri și 74 ștergeri
  1. 76 74
      packages/ckeditor5-typing/tests/deletecommand-integration.js

+ 76 - 74
packages/ckeditor5-typing/tests/deletecommand-integration.js

@@ -8,106 +8,108 @@ import DeleteCommand from 'ckeditor5/typing/deletecommand.js';
 import UndoEngine from 'ckeditor5/undo/undoengine.js';
 import { getData, setData } from 'ckeditor5/engine/dev-utils/model.js';
 
-let editor, doc;
-
-beforeEach( () => {
-	return ModelTestEditor.create( {
-			plugins: [
-				UndoEngine
-			],
-			undo: {
-				step: 3
-			}
-		} )
-		.then( newEditor => {
-			editor = newEditor;
-			doc = editor.document;
-
-			const command = new DeleteCommand( editor, 'backward' );
-			editor.commands.set( 'delete', command );
-
-			doc.schema.registerItem( 'p', '$block' );
-			doc.schema.registerItem( 'img', '$inline' );
-			doc.schema.allow( { name: '$text', inside: 'img' } );
-		} );
-} );
+describe( 'DeleteCommand integration', () => {
+	let editor, doc;
+
+	beforeEach( () => {
+		return ModelTestEditor.create( {
+				plugins: [
+					UndoEngine
+				],
+				undo: {
+					step: 3
+				}
+			} )
+			.then( newEditor => {
+				editor = newEditor;
+				doc = editor.document;
+
+				const command = new DeleteCommand( editor, 'backward' );
+				editor.commands.set( 'delete', command );
+
+				doc.schema.registerItem( 'p', '$block' );
+				doc.schema.registerItem( 'img', '$inline' );
+				doc.schema.allow( { name: '$text', inside: 'img' } );
+			} );
+	} );
 
-function assertOutput( output ) {
-	expect( getData( doc ) ).to.equal( output );
-}
+	function assertOutput( output ) {
+		expect( getData( doc ) ).to.equal( output );
+	}
 
-describe( 'DeleteCommand integration', () => {
-	it( 'deletes characters (and group changes in batches) and rollbacks', () => {
-		setData( doc, '<p>123456789[]</p>' );
+	describe( 'DeleteCommand integration', () => {
+		it( 'deletes characters (and group changes in batches) and rollbacks', () => {
+			setData( doc, '<p>123456789[]</p>' );
 
-		for ( let i = 0; i < 3; ++i ) {
-			editor.execute( 'delete' );
-		}
+			for ( let i = 0; i < 3; ++i ) {
+				editor.execute( 'delete' );
+			}
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>123456789[]</p>' );
-	} );
+			assertOutput( '<p>123456789[]</p>' );
+		} );
 
-	it( 'deletes characters (and group changes in batches) and rollbacks - test step', () => {
-		setData( doc, '<p>123456789[]</p>' );
+		it( 'deletes characters (and group changes in batches) and rollbacks - test step', () => {
+			setData( doc, '<p>123456789[]</p>' );
 
-		for ( let i = 0; i < 6; ++i ) {
-			editor.execute( 'delete' );
-		}
+			for ( let i = 0; i < 6; ++i ) {
+				editor.execute( 'delete' );
+			}
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>123456[]</p>' );
+			assertOutput( '<p>123456[]</p>' );
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>123456789[]</p>' );
-	} );
+			assertOutput( '<p>123456789[]</p>' );
+		} );
 
-	it( 'deletes elements (and group changes in batches) and rollbacks', () => {
-		setData( doc, '<p><img>1</img><img>2</img><img>3</img><img>4</img><img>5</img><img>6</img>[]</p>' );
+		it( 'deletes elements (and group changes in batches) and rollbacks', () => {
+			setData( doc, '<p><img>1</img><img>2</img><img>3</img><img>4</img><img>5</img><img>6</img>[]</p>' );
 
-		for ( let i = 0; i < 3; ++i ) {
-			editor.execute( 'delete' );
-		}
+			for ( let i = 0; i < 3; ++i ) {
+				editor.execute( 'delete' );
+			}
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p><img>1</img><img>2</img><img>3</img><img>4</img><img>5</img><img>6</img>[]</p>' );
-	} );
+			assertOutput( '<p><img>1</img><img>2</img><img>3</img><img>4</img><img>5</img><img>6</img>[]</p>' );
+		} );
 
-	it( 'merges elements (and group changes in batches) and rollbacks', () => {
-		setData( doc, '<p>123456</p><p>[]78</p>' );
+		it( 'merges elements (and group changes in batches) and rollbacks', () => {
+			setData( doc, '<p>123456</p><p>[]78</p>' );
 
-		for ( let i = 0; i < 6; ++i ) {
-			editor.execute( 'delete' );
-		}
+			for ( let i = 0; i < 6; ++i ) {
+				editor.execute( 'delete' );
+			}
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		// Deleted 6,5,4, <P> does not count.
-		// It's not the most elegant solution, but is the best if we don't want to make complicated algorithm.
-		assertOutput( '<p>123[]78</p>' );
+			// Deleted 6,5,4, <P> does not count.
+			// It's not the most elegant solution, but is the best if we don't want to make complicated algorithm.
+			assertOutput( '<p>123[]78</p>' );
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>123456</p><p>[]78</p>' );
-	} );
+			assertOutput( '<p>123456</p><p>[]78</p>' );
+		} );
 
-	it( 'merges elements (and group changes in batches) and rollbacks - non-collapsed selection', () => {
-		setData( doc, '<p>12345[6</p><p>7]8</p>' );
+		it( 'merges elements (and group changes in batches) and rollbacks - non-collapsed selection', () => {
+			setData( doc, '<p>12345[6</p><p>7]8</p>' );
 
-		editor.execute( 'delete' );
-		editor.execute( 'delete' );
-		editor.execute( 'delete' );
+			editor.execute( 'delete' );
+			editor.execute( 'delete' );
+			editor.execute( 'delete' );
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>1234[]8</p>' );
+			assertOutput( '<p>1234[]8</p>' );
 
-		editor.execute( 'undo' );
+			editor.execute( 'undo' );
 
-		assertOutput( '<p>12345[6</p><p>7]8</p>' );
+			assertOutput( '<p>12345[6</p><p>7]8</p>' );
+		} );
 	} );
 } );