|
@@ -102,7 +102,7 @@ describe( 'table properties', () => {
|
|
|
|
|
|
|
|
command.execute( { value: '25px' } );
|
|
command.execute( { value: '25px' } );
|
|
|
|
|
|
|
|
- assertTableStyle( editor, 'height:25px;' );
|
|
|
|
|
|
|
+ assertTableStyle( editor, null, 'height:25px;' );
|
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
it( 'should change selected table height to a passed value', () => {
|
|
it( 'should change selected table height to a passed value', () => {
|
|
@@ -110,7 +110,7 @@ describe( 'table properties', () => {
|
|
|
|
|
|
|
|
command.execute( { value: '25px' } );
|
|
command.execute( { value: '25px' } );
|
|
|
|
|
|
|
|
- assertTableStyle( editor, 'height:25px;' );
|
|
|
|
|
|
|
+ assertTableStyle( editor, null, 'height:25px;' );
|
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
it( 'should remove height from a selected table if no value is passed', () => {
|
|
it( 'should remove height from a selected table if no value is passed', () => {
|
|
@@ -128,7 +128,7 @@ describe( 'table properties', () => {
|
|
|
|
|
|
|
|
command.execute( { value: '25px' } );
|
|
command.execute( { value: '25px' } );
|
|
|
|
|
|
|
|
- assertTableStyle( editor, 'height:25px;' );
|
|
|
|
|
|
|
+ assertTableStyle( editor, null, 'height:25px;' );
|
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
it( 'should change selected table height to a passed value', () => {
|
|
it( 'should change selected table height to a passed value', () => {
|
|
@@ -136,7 +136,7 @@ describe( 'table properties', () => {
|
|
|
|
|
|
|
|
command.execute( { value: '25px' } );
|
|
command.execute( { value: '25px' } );
|
|
|
|
|
|
|
|
- assertTableStyle( editor, 'height:25px;' );
|
|
|
|
|
|
|
+ assertTableStyle( editor, null, 'height:25px;' );
|
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
it( 'should remove height from a selected table if no value is passed', () => {
|
|
it( 'should remove height from a selected table if no value is passed', () => {
|