-
-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: flag overview page redesign - environments #8683
Changes from all commits
1175828
572ddd2
ced2afc
2a6c5ee
7787c5b
63b2bfe
1f8ae97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,7 +227,6 @@ export const deleteFeatureStrategy_UI = ( | |
}, | ||
).as('deleteUserStrategy'); | ||
cy.visit(`/projects/${project}/features/${featureToggleName}`); | ||
cy.get('[data-testid=FEATURE_ENVIRONMENT_ACCORDION_development]').click(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this in combination with the demo.ts change of adding the feature flag that we enable the flag to do the test, so we are only testing the new UI and not the old UI? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With this change we're only testing the new UI, not the old one. See: https://github.com/Unleash/unleash/pull/8683/files#diff-3c93375ad9f5acedec6fbc6c020d3927053759ee0b74bd129a1397e1e22ba81aR47 |
||
cy.get('[data-testid=STRATEGY_REMOVE_MENU_BTN]').first().click(); | ||
cy.get('[data-testid=STRATEGY_FORM_REMOVE_ID]').first().click(); | ||
if (!shouldWait) return cy.get('[data-testid=DIALOGUE_CONFIRM_ID]').click(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the implications of this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes the demo e2e tests, that we only run manually and rarely, use the new flag overview page redesign.