diff --git a/cypress/integration/rendering/newShapes.spec.ts b/cypress/integration/rendering/newShapes.spec.ts index 526cda3b6..ea864a20a 100644 --- a/cypress/integration/rendering/newShapes.spec.ts +++ b/cypress/integration/rendering/newShapes.spec.ts @@ -18,8 +18,18 @@ const newShapesSet2 = [ 'windowPane', ] as const; +const newShapesSet3 = [ + 'halfRoundedRectangle', + 'curvedTrapezoid', + 'bowTieRect', + 'dividedRect', + 'crossedCircle', +] as const; + +const newShapesSet4 = ['waveRectangle', 'trapezoidalPentagon', 'linedCylinder'] as const; + // Aggregate all shape sets into a single array -const newShapesSets = [['windowPane']] as const; +const newShapesSets = [newShapesSet1, newShapesSet2, newShapesSet3, newShapesSet4] as const; looks.forEach((look) => { directions.forEach((direction) => {