diff --git a/cypress/integration/rendering/stateDiagram.spec.js b/cypress/integration/rendering/stateDiagram.spec.js index 155d289d5..14daa6d1d 100644 --- a/cypress/integration/rendering/stateDiagram.spec.js +++ b/cypress/integration/rendering/stateDiagram.spec.js @@ -358,7 +358,7 @@ describe('State diagram', () => { expect(svg).to.have.attr('width', '100%'); expect(svg).to.have.attr('height'); const height = parseFloat(svg.attr('height')); - expect(height).to.eq(171); + expect(height).to.be.within(139,141); const style = svg.attr('style'); expect(style).to.match(/^max-width: [\d.]+px;$/); const maxWidthValue = parseFloat(style.match(/[\d.]+/g).join('')); @@ -379,7 +379,7 @@ describe('State diagram', () => { .should((svg) => { const height = parseFloat(svg.attr('height')); const width = parseFloat(svg.attr('width')); - expect(height).to.eq(171); + expect(height).to.be.within(139,141); // use within because the absolute value can be slightly different depending on the environment ±5% expect(width).to.be.within(112 * .95, 112 * 1.05); expect(svg).to.not.have.attr('style');