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 (
|
| 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.
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!