diff --git a/frontend/cypress/integration/feature/feature.spec.ts b/frontend/cypress/integration/feature/feature.spec.ts index 0939ab9b88..5426f54cc8 100644 --- a/frontend/cypress/integration/feature/feature.spec.ts +++ b/frontend/cypress/integration/feature/feature.spec.ts @@ -56,15 +56,18 @@ describe('feature', () => { ); }); - 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'); + it(`can add a gradual rollout strategy to the development environment (${projectName} ${featureToggleName})`, () => { cy.addFlexibleRolloutStrategyToFeature_UI({ featureToggleName, project: projectName, }); + }); + it(`can update a gradual rollout strategy to the development environment (${projectName} ${featureToggleName})`, () => { cy.updateFlexibleRolloutStrategy_UI(featureToggleName, projectName); + }); + it(`can delete a gradual rollout strategy to the development environment (${projectName} ${featureToggleName})`, () => { cy.deleteFeatureStrategy_UI(featureToggleName, false, projectName); }); });