-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
fix: turned on learnability flags on by default #33283
Conversation
WalkthroughThe recent changes focus on enhancing feature flags and test configurations. Two feature flags related to learnability have been activated, and new flags have been added to the testing framework. Additionally, the test suite has been adjusted by modifying the focus of certain tests and updating the list of limited tests to include a new spec file. Changes
Assessment against linked issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
/ci-test-limit |
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/9030457574. |
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.
Actionable comments posted: 0
Out of diff range and nitpick comments (7)
app/client/cypress/e2e/Regression/ClientSide/OneClickBinding/PropertyControl_spec.ts (7)
Line range hint
1-1
: Ensure imports are used efficiently and remove any unused imports to keep the code clean.
Line range hint
18-18
: Consider adding a brief comment explaining the purpose of thebefore
block for better readability and maintainability.
Line range hint
20-20
: Ensure that the test description accurately reflects the actions and assertions performed in the test.
Line range hint
21-21
: Consider using constants for repeated literal values like timeouts to enhance maintainability.- cy.wait(500); + const SHORT_WAIT_TIME = 500; + cy.wait(SHORT_WAIT_TIME);
Line range hint
24-24
: Consider refactoring repeated actions into helper functions to improve code readability and reusability.- dataSources.NavigateToDSCreateNew(); - dataSources.CreatePlugIn("Mongo"); - agHelper.RenameWithInPane(`dummy${I}`, false); - agHelper.ClearNType(dataSources._host(), "127.0.0.1"); - agHelper.ClearNType(dataSources._port, "8000"); - dataSources.SaveDatasource(); + createAndSaveDataSource(`dummy${I}`, "Mongo", "127.0.0.1", "8000");
Line range hint
26-26
: Consider adding assertions to verify the state of the UI after each significant interaction.+ agHelper.AssertElementExist(oneClickBindingLocator.datasourceDropdownSelector);
Line range hint
27-27
: Add comments explaining the purpose of each block in this test case to enhance readability and maintainability.
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/9030457574. |
Description
For the airgapped testing, we need to remove all the feature flags which are already rolled out to 100% of the users. As part of this task, we have 3 flags in activation/learnability initiatives:
As immediate measure, we are turning default values of these flags to be true, later on we can plan to completely remove the flags from the code.
Fixes #33224
or
Fixes
Issue URL
Warning
If no issue exists, please create an issue first, and check with the maintainers if the issue is valid.
Automation
/ok-to-test tags="@tag.All"
🔍 Cypress test results
Caution
🔴 🔴 🔴 Some tests have failed.
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/9059739090
Commit: e430215
Cypress dashboard: Click here!
The following are new failures, please fix them before merging the PR:
Communication
Should the DevRel and Marketing teams inform users about this change?