diff --git a/frontend/cypress/integration/feature/feature.spec.ts b/frontend/cypress/integration/feature/feature.spec.ts index b14f22508e..0939ab9b88 100644 --- a/frontend/cypress/integration/feature/feature.spec.ts +++ b/frontend/cypress/integration/feature/feature.spec.ts @@ -56,21 +56,15 @@ describe('feature', () => { ); }); - it('can add, update and delete a gradual rollout strategy to the development environment', () => { + it(`can add, update and delete a gradual rollout strategy to the development environment (${projectName} ${featureToggleName})`, () => { + cy.log('Add a gradual rollout strategy to the development environment'); cy.addFlexibleRolloutStrategyToFeature_UI({ featureToggleName, project: projectName, - }).then(() => { - cy.updateFlexibleRolloutStrategy_UI( - featureToggleName, - projectName, - ).then(() => - cy.deleteFeatureStrategy_UI( - featureToggleName, - false, - projectName, - ), - ); }); + + cy.updateFlexibleRolloutStrategy_UI(featureToggleName, projectName); + + cy.deleteFeatureStrategy_UI(featureToggleName, false, projectName); }); });