Skip to content

Commit

Permalink
Remove splash close and add always pull policy
Browse files Browse the repository at this point in the history
  • Loading branch information
gastonfournier committed Nov 30, 2023
1 parent bdaab84 commit 1e538d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/cypress/support/UI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const addFlexibleRolloutStrategyToFeature_UI = (
const defaultStickiness = stickiness || 'default';

cy.visit(`/projects/${projectName}/features/${featureToggleName}`);
cy.get("[data-testid='CloseIcon']").click(); // Close splash

cy.intercept(
'POST',
`/api/admin/projects/${projectName}/features/${featureToggleName}/environments/development/strategies`,
Expand Down Expand Up @@ -324,7 +324,6 @@ export const deleteVariant_UI = (
): Chainable<any> => {
const project = projectName || 'default';
cy.visit(`/projects/${project}/features/${featureToggleName}/variants`);
cy.get("[data-testid='CloseIcon']").click(); // Close splash
cy.get('[data-testid=EDIT_VARIANTS_BUTTON]').click();
cy.wait(300);
cy.get(`[data-testid=VARIANT_DELETE_BUTTON_${variant}]`).first().click();
Expand Down
1 change: 1 addition & 0 deletions test-migrations/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
# migrations container to be healthy.
unleash:
image: unleashorg/unleash-server:latest # this is the latest stable release
pull_policy: "always"
ports:
- "4242:4242"
environment:
Expand Down

0 comments on commit 1e538d4

Please sign in to comment.