diff --git a/content-placeholder/cypress/e2e/test1.spec.cy.js b/content-placeholder/cypress/e2e/test1.spec.cy.js index c2584a9..e0c8858 100644 --- a/content-placeholder/cypress/e2e/test1.spec.cy.js +++ b/content-placeholder/cypress/e2e/test1.spec.cy.js @@ -7,7 +7,12 @@ describe('Project 6: Content Placeholder', () => { }) - it('Background color', () => { + it('Body is visible', () => { + cy.get('body').should('be.visible') + }) + it('Background color', () => { + cy.get('body').should('have.css', 'background-color', 'rgb(236, 240, 241)') }) + }) \ No newline at end of file