Browse Source

Fix tests.

Maciej Gołaszewski 5 years ago
parent
commit
2613b2bcf3

+ 1 - 0
packages/ckeditor5-table/src/tableselection.js

@@ -134,6 +134,7 @@ export default class TableSelection extends Plugin {
 		}
 
 		this._isSelecting = false;
+		this._updateModelSelection();
 	}
 
 	/**

+ 1 - 1
packages/ckeditor5-table/tests/tableselection.js

@@ -13,7 +13,7 @@ import TableEditing from '../src/tableediting';
 import TableSelection from '../src/tableselection';
 import { modelTable, viewTable } from './_utils/utils';
 
-describe.only( 'table selection', () => {
+describe( 'table selection', () => {
 	let editor, model, tableSelection, modelRoot;
 
 	beforeEach( async () => {