Skip to content

Commit 895a642

Browse files
committed
Update AnalyticalTable.cy.tsx
1 parent 75b04d0 commit 895a642

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,13 @@ describe('AnalyticalTable', () => {
381381
function doubleClickResizer(selector: string, columnName: string, outerWidth: number) {
382382
cy.get(selector)
383383
.realHover()
384+
.should(() => {
385+
const color = getComputedStyle(document.documentElement)
386+
.getPropertyValue('--sapContent_DragAndDropActiveColor')
387+
.trim();
388+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
389+
expect(color).to.not.be.empty;
390+
})
384391
.should('have.css', 'background-color', cssVarToRgb('--sapContent_DragAndDropActiveColor'))
385392
.dblclick()
386393
// fallback

0 commit comments

Comments
 (0)