소스 검색

Tests: Un-skipped undo integration tests.

Szymon Cofalik 8 년 전
부모
커밋
2b89e9be28
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      packages/ckeditor5-list/tests/listengine.js

+ 2 - 4
packages/ckeditor5-list/tests/listengine.js

@@ -3605,7 +3605,7 @@ describe( 'ListEngine', () => {
 		_test( testName, input, output, actionCallback, testUndo );
 	}
 
-	function _test( testName, input, output, actionCallback, testUndo = true ) {
+	function _test( testName, input, output, actionCallback ) {
 		it( testName, () => {
 			setModelData( model, input );
 
@@ -3614,9 +3614,7 @@ describe( 'ListEngine', () => {
 			expect( getViewData( viewDoc, { withoutSelection: true } ) ).to.equal( output );
 		} );
 
-		const undoTestFunction = testUndo ? it : it.skip;
-
-		undoTestFunction( testName + ' (undo integration)', () => {
+		it( testName + ' (undo integration)', () => {
 			setModelData( model, input );
 
 			const modelBefore = input;