From 6d7e92d584636f0cda6c79aec35d426315aa853f Mon Sep 17 00:00:00 2001 From: svenadlung Date: Wed, 27 Apr 2022 10:06:19 +0200 Subject: [PATCH] Fix: CSSModules demo test --- demos/src/Examples/CSSModules/Vue/index.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/src/Examples/CSSModules/Vue/index.spec.js b/demos/src/Examples/CSSModules/Vue/index.spec.js index 4d1fef21..033d9e40 100644 --- a/demos/src/Examples/CSSModules/Vue/index.spec.js +++ b/demos/src/Examples/CSSModules/Vue/index.spec.js @@ -12,6 +12,6 @@ context('/src/Examples/CSSModules/Vue/', () => { it('should apply a red headline style to h1', () => { cy.get('.ProseMirror h1').should('exist') - cy.get('.ProseMirror h1').should('have.css', 'color', '#f00') + cy.get('.ProseMirror h1').should('have.css', 'color', 'rgb(255, 0, 0)') }) })