Skip to content

Commit

Permalink
Minor CR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Aug 13, 2024
1 parent 27ba4e8 commit f323416
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions packages/ckeditor5-table/src/utils/table-properties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,6 @@ export function getNormalizedDefaultTableProperties(
borderStyle: 'double',
borderColor: 'hsl(0, 0%, 70%)',
borderWidth: '1px',
width: '100%',
height: '100%',
...config
}, options );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe( 'table cell properties', () => {

expect( config ).to.be.an( 'object' );
expect( config ).to.have.property( 'defaultProperties' );
expect( config.defaultProperties ).to.include( {} );
expect( config.defaultProperties ).to.deep.equal( {} );
} );

it( 'adds tableCellBorderColor command', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe( 'table properties', () => {

expect( config ).to.be.an( 'object' );
expect( config ).to.have.property( 'defaultProperties' );
expect( config.defaultProperties ).to.include( {} );
expect( config.defaultProperties ).to.deep.equal( {} );
} );

it( 'adds tableBorderColor command', () => {
Expand Down

0 comments on commit f323416

Please sign in to comment.