Skip to content
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(smoke-test): missing test for move domain #10837

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions smoke-test/tests/cypress/cypress/e2e/domains/nested_domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,19 @@ describe("Verify nested domains test functionalities", () => {
clearAndDelete();
});

it("verify Move domain root level to parent level", () => {
cy.waitTextVisible(domainName);
moveDomaintoRootLevel();
cy.waitTextVisible("Moved Domain!");
cy.ensureTextNotPresent("Moved Domain!");
cy.goToDomainList();
cy.waitTextVisible("1 sub-domain");
});

it("Verify Move domain parent level to root level", () => {
moveDomaintoParent();
cy.waitTextVisible("Moved Domain!");
cy.ensureTextNotPresent("Moved Domain!");
cy.goToDomainList();
cy.waitTextVisible(domainName);
});
Expand Down
Loading