From acd50b7573879e6933368d96f6660a82bd32bd8a Mon Sep 17 00:00:00 2001 From: SkyBlaise Date: Sun, 28 Apr 2024 20:22:34 +0800 Subject: [PATCH] fix failing tc --- .../cypress/tests/codeView/codeView_codeHighlighting.cy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/cypress/tests/codeView/codeView_codeHighlighting.cy.js b/frontend/cypress/tests/codeView/codeView_codeHighlighting.cy.js index 11fba24770..79c3334528 100644 --- a/frontend/cypress/tests/codeView/codeView_codeHighlighting.cy.js +++ b/frontend/cypress/tests/codeView/codeView_codeHighlighting.cy.js @@ -67,8 +67,8 @@ describe('code highlighting works properly', () => { // eslint-disable-next-line quotes cy.get('.line-content').contains("'red': (") // jamessspanggg .parent() // .code - // #f08080, transparencyValue 30 - .should('have.css', 'background-color', 'rgba(240, 128, 128, 0.19)') + // #f08080, transparencyValue 50 + .should('have.css', 'background-color', 'rgba(240, 128, 128, 0.314)') .and('not.eq', firstAuthorColor); }); });