1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-18 00:19:49 +01:00

Split steps into different tests

This commit is contained in:
Gastón Fournier 2024-09-02 15:06:43 +02:00
parent e23705faf1
commit 4f228b2c2b
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -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);
});
});