Fix: CSSModules demo test

This commit is contained in:
svenadlung
2022-04-27 10:06:19 +02:00
parent 5c1bba6d5b
commit 6d7e92d584

View File

@@ -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)')
})
})