-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
test:PartialExport_Widgets spec file updated and import app method updated with validations #33343
Conversation
WalkthroughWalkthroughThe updates primarily focus on standardizing the use of message constants across various Cypress test suites and support files. This involves importing and utilizing Changes
Recent Review DetailsConfiguration used: CodeRabbit UI Files ignored due to path filters (1)
Files selected for processing (17)
Files not reviewed due to errors (2)
Files skipped from review due to trivial changes (6)
Additional comments not posted (20)
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 (
|
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: 1
this.agHelper.WaitUntilEleDisappear( | ||
HomePageLocators.workspaceImportAppModal, | ||
); | ||
this.agHelper.AssertElementAbsence( | ||
this.locator._specificToast("Unable to import application in workspace"), | ||
this.locator._specificToast(createMessage(UNABLE_TO_IMPORT_APP)), |
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.
Refactor to improve readability by combining assertions into a single method if possible.
- this.agHelper.WaitUntilEleDisappear(HomePageLocators.workspaceImportAppModal);
- this.agHelper.AssertElementAbsence(this.locator._specificToast(createMessage(UNABLE_TO_IMPORT_APP)));
+ this.agHelper.WaitForElementAndAssertAbsence(HomePageLocators.workspaceImportAppModal, this.locator._specificToast(createMessage(UNABLE_TO_IMPORT_APP)));
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
this.agHelper.WaitUntilEleDisappear( | |
HomePageLocators.workspaceImportAppModal, | |
); | |
this.agHelper.AssertElementAbsence( | |
this.locator._specificToast("Unable to import application in workspace"), | |
this.locator._specificToast(createMessage(UNABLE_TO_IMPORT_APP)), | |
this.agHelper.WaitForElementAndAssertAbsence( | |
HomePageLocators.workspaceImportAppModal, | |
this.locator._specificToast(createMessage(UNABLE_TO_IMPORT_APP)), | |
); |
RCA:
PartialExport_Widgets_spec.ts was failing where we export and compare files.
Solution:
/ok-to-test tags="@tag.Workspace,@tag.ImportExport"
Tip
🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/9028944129
Commit: b9ad3c9
Cypress dashboard url: Click here!