From 551c50d845c7618f232f89537bb78560b606ddf2 Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Tue, 1 Oct 2019 20:02:52 -0700 Subject: [PATCH] fix integration test --- cypress/integration/background-color.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cypress/integration/background-color.spec.js b/cypress/integration/background-color.spec.js index 619a198..4412d43 100644 --- a/cypress/integration/background-color.spec.js +++ b/cypress/integration/background-color.spec.js @@ -20,7 +20,9 @@ describe('background color', () => { it('opens BG color pick', () => { cy.visit('/') openPicker() - closePicker() + cy.get(bgColor).click() + // TODO closePicker is not working right now + // closePicker() cy.get(picker).should('not.exist') })