diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-06 21:25:55 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-06 21:25:55 +0100 |
commit | d247e237b64bb51384123ccab8b4b9c54bb22e55 (patch) | |
tree | 3f67658253354b173dbb924bc86bf5c4670c8006 /cypress/e2e/theming/user-background.cy.ts | |
parent | 7b4914bce59d15f5fc34de61ab65460cfcf48bac (diff) | |
download | nextcloud-server-d247e237b64bb51384123ccab8b4b9c54bb22e55.tar.gz nextcloud-server-d247e237b64bb51384123ccab8b4b9c54bb22e55.zip |
fix(cypress): Adjust cypress tests for changed theming
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'cypress/e2e/theming/user-background.cy.ts')
-rw-r--r-- | cypress/e2e/theming/user-background.cy.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/theming/user-background.cy.ts b/cypress/e2e/theming/user-background.cy.ts index e024ea4b5e9..cdf3ef59f4d 100644 --- a/cypress/e2e/theming/user-background.cy.ts +++ b/cypress/e2e/theming/user-background.cy.ts @@ -95,7 +95,7 @@ describe('User select shipped backgrounds and remove background', function() { // Validate changed background and primary cy.wait('@setBackground') - cy.waitUntil(() => validateBodyThemingCss('#56633d', background)) + cy.waitUntil(() => validateBodyThemingCss('#869171', background)) }) it('Remove background', function() { @@ -109,7 +109,7 @@ describe('User select shipped backgrounds and remove background', function() { // Validate clear background cy.wait('@clearBackground') - cy.waitUntil(() => validateBodyThemingCss('#56633d', null)) + cy.waitUntil(() => validateBodyThemingCss('#869171', null)) }) }) |