From 6980529b06ce8f97eb90cdcefed5b26e08d442aa Mon Sep 17 00:00:00 2001 From: Ran Byron Date: Mon, 1 Apr 2019 13:33:10 +0300 Subject: [PATCH] Fixed wrong width assertion --- client/cypress/integration/dashboard/dashboard_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cypress/integration/dashboard/dashboard_spec.js b/client/cypress/integration/dashboard/dashboard_spec.js index ae7af1d310..887264789b 100644 --- a/client/cypress/integration/dashboard/dashboard_spec.js +++ b/client/cypress/integration/dashboard/dashboard_spec.js @@ -315,7 +315,7 @@ describe('Dashboard', () => { const { top, left } = $el.offset(); expect(top).to.eq(214); expect(left).to.eq(215); - expect($el.width()).to.eq(585); + expect($el.width()).to.eq(600); expect($el.height()).to.eq(185); }); });