Skip to content

Commit

Permalink
chore: adding default feature flag intercept
Browse files Browse the repository at this point in the history
  • Loading branch information
brayn003 committed Jan 6, 2025
1 parent 9b856b9 commit 5692809
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/client/cypress/e2e/Regression/Apps/EchoApiCMS_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ describe(
});

it("6. Connect app to git, verify data binding in edit and deploy mode", () => {
featureFlagIntercept({ release_git_modularisation_enabled: true });
EditorNavigation.SelectEntityByName("Page1", EntityType.Page);
gitSync.CreateNConnectToGit(repoName);
cy.get("@gitRepoName").then((repName) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ describe(

it("3. Connect the application to git and validate data in deploy mode and edit mode", function () {
deployMode.NavigateBacktoEditor();
featureFlagIntercept({ release_git_modularisation_enabled: true });
gitSync.CreateNConnectToGit(repoName);
cy.get("@gitRepoName").then((repName) => {
repoName = repName;
Expand Down
1 change: 1 addition & 0 deletions app/client/cypress/support/Objects/FeatureFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const defaultFlags = {
release_side_by_side_ide_enabled: true,
rollout_remove_feature_walkthrough_enabled: false, // remove this flag from here when it's removed from code
release_actions_redesign_enabled: true,
release_git_modularisation_enabled: true,
};

export const featureFlagIntercept = (
Expand Down

0 comments on commit 5692809

Please sign in to comment.