Skip to content

Commit 13c1b0f

Browse files
committed
FilterBar: fix test
1 parent 116fb00 commit 13c1b0f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/main/src/components/FilterBar/FilterBar.cy.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ describe('FilterBar.cy.tsx', () => {
337337
// no border for table rows within panel - `getComputedStyle` returns the default value (`separate`) for `unset`
338338
cy.get('table').should('have.css', 'border-collapse', 'separate');
339339
// no bottom border for table within panel - `getComputedStyle` sets the border-width to 0 for `none`
340-
cy.get('.ui5-table-root').should('have.css', 'border-bottom', '0px none rgb(29, 45, 62)');
340+
cy.get('.ui5-table-root')
341+
.should('have.css', 'border-bottom-width', '0px')
342+
.and('have.css', 'border-bottom-style', 'none');
341343
// no select-all checkbox (header row is hidden)
342344
cy.get('thead th.ui5-table-select-all-column').should('not.be.visible');
343345
});

0 commit comments

Comments
 (0)