Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 6319545

Browse files
committed
test: fix failing tests due to wrong colors
1 parent 0f951ed commit 6319545

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ui-tests/src/coreComponents/Select.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ context('Select', () => {
101101
cy.get(popOverEl)
102102
.find(popOverSelectItem)
103103
.eq(1)
104-
.should('have.css', 'background-color', 'rgb(242, 242, 242)')
104+
.should('have.css', 'background-color', 'rgb(245, 245, 245)')
105105
cy.get('[data-cy=selectTest]').click()
106106
})
107107

@@ -302,6 +302,6 @@ context('Select', () => {
302302
cy.get(popOverEl)
303303
.find(popOverSelectItem)
304304
.eq(1)
305-
.should('have.css', 'background-color', 'rgb(242, 242, 242)')
305+
.should('have.css', 'background-color', 'rgb(245, 245, 245)')
306306
})
307307
})

packages/ui-tests/src/coreComponents/ToggleButtonGroup.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ context('ToggleButtonGroup', () => {
1818
.should(
1919
'have.css',
2020
'background-color',
21-
toggled === true ? 'rgb(67, 153, 230)' : 'rgb(252, 252, 252)'
21+
toggled === true ? 'rgb(82, 82, 82)' : 'rgb(255, 255, 255)'
2222
)
2323
}
2424

0 commit comments

Comments
 (0)